runtime-rs: Use workspace nix version

See if we can sync to use the workspace version for easier
dependency management

Signed-off-by: stevenhorsman <steven@uk.ibm.com>
This commit is contained in:
stevenhorsman
2026-06-17 09:33:22 +01:00
parent 2b8b09469d
commit ac508b093d
3 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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"] }

View File

@@ -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" }