From 766cbab593a98bf0683e6e4415ea957a744237cb Mon Sep 17 00:00:00 2001 From: Padraic Fanning <27117322+fanninpm@users.noreply.github.com> Date: Sun, 3 May 2026 22:36:51 -0400 Subject: [PATCH 1/2] Add dependencies from `common` crate to workspace --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 0f0ddc5c273..86fe6ff0777 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -216,6 +216,7 @@ liblzma = "0.4" liblzma-sys = "0.4" libsqlite3-sys = "0.37" libz-sys = { package = "libz-rs-sys", version = "0.5" } +lock_api = "0.4" log = "0.4.29" nix = { version = "0.31", features = ["fs", "user", "process", "term", "time", "signal", "ioctl", "socket", "sched", "zerocopy", "dir", "hostname", "net", "poll"] } mac_address = "1.1.3" @@ -261,6 +262,7 @@ scopeguard = "1" sha-1 = "0.10.0" sha2 = "0.10.2" sha3 = "0.10.1" +siphasher = "1" socket2 = "0.6.3" static_assertions = "1.1" strum = "0.28" From 0ee5db474ef8c9f57185e7bc1f177fd6ddaf93cd Mon Sep 17 00:00:00 2001 From: Padraic Fanning <27117322+fanninpm@users.noreply.github.com> Date: Sun, 3 May 2026 22:37:05 -0400 Subject: [PATCH 2/2] Declare dependencies as workspace = true --- crates/common/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index 29d7aaeed28..725be665f73 100644 --- a/crates/common/Cargo.toml +++ b/crates/common/Cargo.toml @@ -31,9 +31,9 @@ parking_lot = { workspace = true, optional = true } unicode_names2 = { workspace = true } radium = { workspace = true } -lock_api = "0.4" -siphasher = "1" -num-complex.workspace = true +lock_api = { workspace = true } +siphasher = { workspace = true } +num-complex = { workspace = true } [lints] workspace = true