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/layout_traits/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'components/layout_traits/Cargo.toml') diff --git a/components/layout_traits/Cargo.toml b/components/layout_traits/Cargo.toml index ac950a34b2a..2fe80f7cbbf 100644 --- a/components/layout_traits/Cargo.toml +++ b/components/layout_traits/Cargo.toml @@ -11,9 +11,9 @@ name = "layout_traits" path = "lib.rs" [dependencies] -crossbeam-channel = "0.4" +crossbeam-channel = { workspace = true } gfx = { path = "../gfx" } -ipc-channel = "0.14" +ipc-channel = { workspace = true } metrics = { path = "../metrics" } msg = { path = "../msg" } net_traits = { path = "../net_traits" } -- cgit v1.2.3