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

Bump the patch group with 2 updates

Bumps the patch group with 2 updates: [libc](https://github.com/rust-lang/libc) and [which](https://github.com/harryfei/which-rs).


Updates `libc` from 0.2.156 to 0.2.157
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.157/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.156...0.2.157)

Updates `which` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/harryfei/which-rs/releases)
- [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/harryfei/which-rs/compare/6.0.2...6.0.3)

---
updated-dependencies:
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: which
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2024-08-19 00:50:09 +00:00 committed by GitHub
parent 6a4d03c7b0
commit 1c7e217beb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 9 additions and 9 deletions

10
Cargo.lock generated

@ -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",

@ -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"] }

@ -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",

@ -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"]}

@ -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"