1
0
mirror of https://github.com/containers/youki synced 2024-11-22 17:02:00 +01:00

Merge pull request #2955 from containers/dependabot/cargo/patch-c8f77a56eb

This commit is contained in:
github-actions[bot] 2024-10-18 00:20:56 +00:00 committed by GitHub
commit 841553806d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 7 deletions

8
Cargo.lock generated

@ -1979,9 +1979,9 @@ dependencies = [
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.159" version = "0.2.161"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
[[package]] [[package]]
name = "libcgroups" name = "libcgroups"
@ -3508,9 +3508,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_json" name = "serde_json"
version = "1.0.128" version = "1.0.129"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" checksum = "6dbcf9b78a125ee667ae19388837dd12294b858d101fdd393cb9d5501ef09eb2"
dependencies = [ dependencies = [
"itoa", "itoa",
"memchr", "memchr",

@ -28,7 +28,7 @@ serde = { version = "1.0", features = ["derive"] }
rbpf = { version = "0.3.0", optional = true } rbpf = { version = "0.3.0", optional = true }
libbpf-sys = { version = "1.4.5", optional = true } libbpf-sys = { version = "1.4.5", optional = true }
errno = { version = "0.3.9", optional = true } errno = { version = "0.3.9", optional = true }
libc = { version = "0.2.159", optional = true } libc = { version = "0.2.161", optional = true }
thiserror = "1.0.64" thiserror = "1.0.64"
tracing = { version = "0.1.40", features = ["attributes"] } tracing = { version = "0.1.40", features = ["attributes"] }

@ -26,7 +26,7 @@ chrono = { version = "0.4", default-features = false, features = [
"serde", "serde",
] } ] }
fastrand = "^2.1.1" fastrand = "^2.1.1"
libc = "0.2.159" libc = "0.2.161"
nix = { version = "0.28.0", features = [ nix = { version = "0.28.0", features = [
"socket", "socket",
"sched", "sched",

@ -7,5 +7,5 @@ edition = "2021"
oci-spec = { version = "0.7.0", features = ["runtime"] } oci-spec = { version = "0.7.0", features = ["runtime"] }
nix = "0.28.0" nix = "0.28.0"
anyhow = "1.0" anyhow = "1.0"
libc = "0.2.159" # TODO (YJDoc2) upgrade to latest libc = "0.2.161" # TODO (YJDoc2) upgrade to latest
nc = "0.9.4" nc = "0.9.4"