aboutsummaryrefslogtreecommitdiffstats
path: root/components/background_hang_monitor
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2023-05-16 19:54:19 +0200
committerMartin Robinson <mrobinson@igalia.com>2023-05-17 11:59:35 +0200
commit2f4c47bfe7828a8045d0392a4015f441fed1aa5d (patch)
treecfdab05dff951c5c2d9be545267e7d9e73407dbd /components/background_hang_monitor
parentc5d31c3ab6ad4c633869ef4c4d32cd01c480661f (diff)
downloadservo-2f4c47bfe7828a8045d0392a4015f441fed1aa5d.tar.gz
servo-2f4c47bfe7828a8045d0392a4015f441fed1aa5d.zip
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.
Diffstat (limited to 'components/background_hang_monitor')
-rw-r--r--components/background_hang_monitor/Cargo.toml14
1 files changed, 7 insertions, 7 deletions
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"