diff --git a/Cargo.lock b/Cargo.lock index 14b8e1349..789a53ed7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -555,7 +555,7 @@ dependencies = [ "tracing", "tracing-subscriber", "uuid", - "which 6.0.2", + "which 6.0.3", ] [[package]] @@ -1941,9 +1941,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.156" +version = "0.2.157" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5f43f184355eefb8d17fc948dbecf6c13be3c141f20d834ae842193a448c72a" +checksum = "374af5f94e54fa97cf75e945cce8a6b201e88a1a07e688b47dfd2a59c66dbd86" [[package]] name = "libcgroups" @@ -5398,9 +5398,9 @@ dependencies = [ [[package]] name = "which" -version = "6.0.2" +version = "6.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d9c5ed668ee1f17edb3b627225343d210006a90bb1e3745ce1f30b1fb115075" +checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f" dependencies = [ "either", "home", diff --git a/crates/libcgroups/Cargo.toml b/crates/libcgroups/Cargo.toml index 7caeb0f00..1ec297cf5 100644 --- a/crates/libcgroups/Cargo.toml +++ b/crates/libcgroups/Cargo.toml @@ -28,7 +28,7 @@ serde = { version = "1.0", features = ["derive"] } rbpf = { version = "0.2.0", optional = true } libbpf-sys = { version = "1.4.3", optional = true } errno = { version = "0.3.9", optional = true } -libc = { version = "0.2.156", optional = true } +libc = { version = "0.2.157", optional = true } thiserror = "1.0.63" tracing = { version = "0.1.40", features = ["attributes"] } diff --git a/crates/libcontainer/Cargo.toml b/crates/libcontainer/Cargo.toml index 0097f5ca3..460e25ed7 100644 --- a/crates/libcontainer/Cargo.toml +++ b/crates/libcontainer/Cargo.toml @@ -28,7 +28,7 @@ chrono = { version = "0.4", default-features = false, features = [ ] } fastrand = "^2.1.0" futures = { version = "0.3", features = ["thread-pool"] } -libc = "0.2.156" +libc = "0.2.157" nix = { version = "0.28.0", features = [ "socket", "sched", diff --git a/tests/contest/contest/Cargo.toml b/tests/contest/contest/Cargo.toml index c5bf8b4f6..c67b8fb00 100644 --- a/tests/contest/contest/Cargo.toml +++ b/tests/contest/contest/Cargo.toml @@ -21,7 +21,7 @@ serde_json = "1.0" tar = "0.4" test_framework = { path = "../test_framework" } uuid = "1.10" -which = "6.0.2" +which = "6.0.3" tempfile = "3" scopeguard = "1.2.0" tracing = { version = "0.1.40", features = ["attributes"]} diff --git a/tests/contest/runtimetest/Cargo.toml b/tests/contest/runtimetest/Cargo.toml index 43622b5f0..5a38cb61c 100644 --- a/tests/contest/runtimetest/Cargo.toml +++ b/tests/contest/runtimetest/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" oci-spec = { version = "0.6.8", features = ["runtime"] } nix = "0.28.0" anyhow = "1.0" -libc = "0.2.156" # TODO (YJDoc2) upgrade to latest +libc = "0.2.157" # TODO (YJDoc2) upgrade to latest nc = "0.8.23"