diff --git a/Cargo.lock b/Cargo.lock index 98e5663c2..5dd16352f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1249,12 +1249,12 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "errno" -version = "0.3.9" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" +checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -1957,9 +1957,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.166" +version = "0.2.167" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2ccc108bbc0b1331bd061864e7cd823c0cab660bbe6970e66e2c0614decde36" +checksum = "09d6582e104315a817dff97f75133544b2e094ee22447d2acf4a74e189ba06fc" [[package]] name = "libcgroups" @@ -4253,9 +4253,9 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" [[package]] name = "tracing" -version = "0.1.40" +version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" dependencies = [ "log", "pin-project-lite", @@ -4265,9 +4265,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.27" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", @@ -4276,9 +4276,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.32" +version = "0.1.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" dependencies = [ "once_cell", "valuable", @@ -4286,9 +4286,9 @@ dependencies = [ [[package]] name = "tracing-journald" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba316a74e8fc3c3896a850dba2375928a9fa171b085ecddfc7c054d39970f3fd" +checksum = "fc0b4143302cf1022dac868d521e36e8b27691f72c84b3311750d5188ebba657" dependencies = [ "libc", "tracing-core", @@ -4308,9 +4308,9 @@ dependencies = [ [[package]] name = "tracing-serde" -version = "0.1.3" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1" +checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" dependencies = [ "serde", "tracing-core", @@ -4318,9 +4318,9 @@ dependencies = [ [[package]] name = "tracing-subscriber" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" +checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" dependencies = [ "matchers", "nu-ansi-term", diff --git a/crates/libcgroups/Cargo.toml b/crates/libcgroups/Cargo.toml index 42f161818..cf5150f75 100644 --- a/crates/libcgroups/Cargo.toml +++ b/crates/libcgroups/Cargo.toml @@ -27,10 +27,10 @@ fixedbitset = "0.5.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.166", optional = true } +errno = { version = "0.3.10", optional = true } +libc = { version = "0.2.167", optional = true } thiserror = "2.0.3" -tracing = { version = "0.1.40", features = ["attributes"] } +tracing = { version = "0.1.41", features = ["attributes"] } [dev-dependencies] anyhow = "1.0" diff --git a/crates/libcontainer/Cargo.toml b/crates/libcontainer/Cargo.toml index a6ace0b57..78208bdfe 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.166" +libc = "0.2.167" nix = { version = "0.28.0", features = [ "socket", "sched", @@ -48,7 +48,7 @@ serde_json = "1.0" rust-criu = "0.4.0" regex = { version = "1.10.6", default-features = false, features = ["std", "unicode-perl"] } thiserror = "2.0.3" -tracing = { version = "0.1.40", features = ["attributes"] } +tracing = { version = "0.1.41", features = ["attributes"] } safe-path = "0.1.0" nc = "0.9.5" diff --git a/crates/youki/Cargo.toml b/crates/youki/Cargo.toml index f48d9074e..2c40810c9 100644 --- a/crates/youki/Cargo.toml +++ b/crates/youki/Cargo.toml @@ -45,9 +45,9 @@ wasmer-wasix = { version = "0.9.0", optional = true } wasmedge-sdk = { version = "0.14.0", optional = true } wasmtime = { version = "26.0.1", optional = true } wasi-common = { version = "26.0.1", optional = true } -tracing = { version = "0.1.40", features = ["attributes"] } -tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] } -tracing-journald = "0.3.0" +tracing = { version = "0.1.41", features = ["attributes"] } +tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] } +tracing-journald = "0.3.1" [dev-dependencies] serial_test = "3.1.1" diff --git a/tests/contest/contest/Cargo.toml b/tests/contest/contest/Cargo.toml index 46a70bb87..52197e94c 100644 --- a/tests/contest/contest/Cargo.toml +++ b/tests/contest/contest/Cargo.toml @@ -23,8 +23,8 @@ uuid = "1.11" which = "7.0.0" tempfile = "3" scopeguard = "1.2.0" -tracing = { version = "0.1.40", features = ["attributes"]} -tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] } +tracing = { version = "0.1.41", features = ["attributes"]} +tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] } [dependencies.clap] version = "4.1.6" diff --git a/tests/contest/runtimetest/Cargo.toml b/tests/contest/runtimetest/Cargo.toml index 16176c98e..cd0ceaebf 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.166" # TODO (YJDoc2) upgrade to latest +libc = "0.2.167" # TODO (YJDoc2) upgrade to latest nc = "0.9.5"