diff --git a/Cargo.lock b/Cargo.lock index d42c1979f9..f9f1e25f51 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1326,9 +1326,9 @@ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" [[package]] name = "flate2" -version = "1.0.34" +version = "1.0.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" +checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" dependencies = [ "crc32fast", "miniz_oxide 0.8.0", @@ -1957,9 +1957,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.162" +version = "0.2.164" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18d287de67fe55fd7e1581fe933d965a5a9477b38e949cfa9f8574ef01506398" +checksum = "433bfe06b8c75da9b2e3fbea6e5329ff87748f0b144ef75306e674c3f6f7c13f" [[package]] name = "libcgroups" @@ -2023,7 +2023,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" dependencies = [ "cfg-if", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] @@ -2231,9 +2231,9 @@ dependencies = [ [[package]] name = "mockall" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4c28b3fb6d753d28c20e826cd46ee611fda1cf3cde03a443a974043247c065a" +checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2" dependencies = [ "cfg-if", "downcast", @@ -2245,9 +2245,9 @@ dependencies = [ [[package]] name = "mockall_derive" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "341014e7f530314e9a1fdbc7400b244efea7122662c96bfa248c31da5bfb2020" +checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898" dependencies = [ "cfg-if", "proc-macro2", @@ -3497,9 +3497,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.132" +version = "1.0.133" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" +checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" dependencies = [ "itoa", "memchr", diff --git a/crates/libcgroups/Cargo.toml b/crates/libcgroups/Cargo.toml index f9abf1012a..09eb813eca 100644 --- a/crates/libcgroups/Cargo.toml +++ b/crates/libcgroups/Cargo.toml @@ -28,7 +28,7 @@ serde = { version = "1.0", features = ["derive"] } rbpf = { version = "0.3.0", optional = true } libbpf-sys = { version = "1.5.0", optional = true } errno = { version = "0.3.9", optional = true } -libc = { version = "0.2.162", optional = true } +libc = { version = "0.2.164", optional = true } thiserror = "2.0.3" tracing = { version = "0.1.40", features = ["attributes"] } @@ -36,7 +36,7 @@ tracing = { version = "0.1.40", features = ["attributes"] } anyhow = "1.0" oci-spec = { version = "~0.7.1", features = ["proptests", "runtime"] } quickcheck = "1" -mockall = { version = "0.13.0", features = [] } +mockall = { version = "0.13.1", features = [] } clap = "4.1.6" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/crates/libcontainer/Cargo.toml b/crates/libcontainer/Cargo.toml index 5f7b38b15c..1135baea5e 100644 --- a/crates/libcontainer/Cargo.toml +++ b/crates/libcontainer/Cargo.toml @@ -26,7 +26,7 @@ chrono = { version = "0.4", default-features = false, features = [ "serde", ] } fastrand = "^2.1.1" -libc = "0.2.162" +libc = "0.2.164" nix = { version = "0.28.0", features = [ "socket", "sched", diff --git a/tests/contest/runtimetest/Cargo.toml b/tests/contest/runtimetest/Cargo.toml index e257bb23c5..c34ec5d2c9 100644 --- a/tests/contest/runtimetest/Cargo.toml +++ b/tests/contest/runtimetest/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" oci-spec = { version = "0.7.1", features = ["runtime"] } nix = "0.28.0" anyhow = "1.0" -libc = "0.2.162" # TODO (YJDoc2) upgrade to latest +libc = "0.2.164" # TODO (YJDoc2) upgrade to latest nc = "0.9.5"