From ac508b093d2240bc74cdcaa61479fa5ba230d11b Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Wed, 17 Jun 2026 09:33:22 +0100 Subject: [PATCH] runtime-rs: Use workspace nix version See if we can sync to use the workspace version for easier dependency management Signed-off-by: stevenhorsman --- src/runtime-rs/crates/hypervisor/ch-config/Cargo.toml | 2 +- src/runtime-rs/crates/runtimes/Cargo.toml | 2 +- src/tools/kata-ctl/Cargo.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/runtime-rs/crates/hypervisor/ch-config/Cargo.toml b/src/runtime-rs/crates/hypervisor/ch-config/Cargo.toml index 9dd8ed2cbb..d296b1a035 100644 --- a/src/runtime-rs/crates/hypervisor/ch-config/Cargo.toml +++ b/src/runtime-rs/crates/hypervisor/ch-config/Cargo.toml @@ -15,7 +15,7 @@ anyhow = { workspace = true } serde = { workspace = true, features = ["rc", "derive"] } serde_json = { workspace = true } tokio = { workspace = true, features = ["sync", "rt"] } -nix = "0.26.2" +nix = { workspace = true } thiserror = "2.0.18" # Cloud Hypervisor public HTTP API functions diff --git a/src/runtime-rs/crates/runtimes/Cargo.toml b/src/runtime-rs/crates/runtimes/Cargo.toml index 57072e3012..f3f0f0f9bd 100644 --- a/src/runtime-rs/crates/runtimes/Cargo.toml +++ b/src/runtime-rs/crates/runtimes/Cargo.toml @@ -28,7 +28,7 @@ opentelemetry-jaeger = { version = "0.17.0", features = [ tracing-subscriber = { version = "0.3", features = ["registry", "std"] } hyper = { workspace = true, features = ["stream", "server", "http1"] } serde_json = { workspace = true } -nix = "0.25.0" +nix = { workspace = true } url = { workspace = true } procfs = "0.12.0" prometheus = { version = "0.14.0", features = ["process"] } diff --git a/src/tools/kata-ctl/Cargo.toml b/src/tools/kata-ctl/Cargo.toml index c0524f5441..461d3a667d 100644 --- a/src/tools/kata-ctl/Cargo.toml +++ b/src/tools/kata-ctl/Cargo.toml @@ -16,7 +16,7 @@ clap = { workspace = true, features = ["derive", "cargo"] } serde_json.workspace = true thiserror.workspace = true privdrop = "0.5.2" -nix = "0.25.0" +nix = { workspace = true } strum = "0.24.1" strum_macros = "0.24.3" serde.workspace = true @@ -74,7 +74,7 @@ reqwest = { version = "0.12", default-features = false, features = [ [dev-dependencies] semver = "1.0.12" tempfile.workspace = true -nix = "0.25.0" +nix = { workspace = true } test-utils.workspace = true micro_http = { git = "https://github.com/firecracker-microvm/micro-http", rev = "5c2254d6cf4f32a668d0d8e57ba20bebad9d4fba" }