From 2f4c47bfe7828a8045d0392a4015f441fed1aa5d Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Tue, 16 May 2023 19:54:19 +0200 Subject: Start the transition to workspace dependencies This will ultimately make it simpler to update crate dependencies and reduce duplicate when specifying requirements. Generally, this change does not touch dependencies that are only used by a single crate. We could consider moving them to workspace dependencies in the future. --- components/background_hang_monitor/Cargo.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'components/background_hang_monitor') diff --git a/components/background_hang_monitor/Cargo.toml b/components/background_hang_monitor/Cargo.toml index 419465b5c8f..9e54d6090f6 100644 --- a/components/background_hang_monitor/Cargo.toml +++ b/components/background_hang_monitor/Cargo.toml @@ -13,16 +13,16 @@ test = false doctest = false [dependencies] -backtrace = "0.3" -crossbeam-channel = "0.4" -ipc-channel = "0.14" -libc = "0.2" -log = "0.4" +backtrace = { workspace = true } +crossbeam-channel = { workspace = true } +ipc-channel = { workspace = true } +libc = { workspace = true } +log = { workspace = true } msg = { path = "../msg" } -serde_json = "1.0" +serde_json = { workspace = true } [dev-dependencies] -lazy_static = "1.0" +lazy_static = { workspace = true } [target.'cfg(target_os = "macos")'.dependencies] mach = "0.3" -- cgit v1.2.3