libs: Update mem-agent to use nix workspace version

Now that the workspace version has been updated,
switch the mem-agent to pick up the new workspace version

Signed-off-by: stevenhorsman <steven@uk.ibm.com>
This commit is contained in:
stevenhorsman
2026-06-17 06:18:07 -07:00
parent 531877f28f
commit d09d1959c2
2 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@@ -4081,7 +4081,7 @@ dependencies = [
"chrono",
"lazy_static",
"maplit",
"nix 0.30.1",
"nix 0.31.3",
"once_cell",
"page_size",
"slog",

View File

@@ -13,7 +13,7 @@ page_size = "0.6"
chrono = "0.4"
tokio = { version = "1.45.1", features = ["full"] }
maplit = "1.0"
nix = { version = "0.30.1", features = ["fs", "sched"] }
nix = { workspace = true, features = ["fs", "sched"] }
[dev-dependencies]
maplit = "1.0"
@@ -21,5 +21,5 @@ slog-term = "2.9.0"
slog-async = "2.7"
once_cell = "1.9.0"
lazy_static = "1.4"
nix = { version = "0.30.1", features = ["user"] }
nix = { workspace = true, features = ["user"] }
test-utils = { path = "../test-utils" }