1
0
mirror of https://github.com/containers/youki synced 2024-11-26 06:08:07 +01:00

Bump the patch group with 2 updates

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


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

Updates `tar` from 0.4.41 to 0.4.42
- [Commits](https://github.com/alexcrichton/tar-rs/compare/0.4.41...0.4.42)

---
updated-dependencies:
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: tar
  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-09-25 00:55:19 +00:00 committed by GitHub
parent da51197255
commit 8920408d56
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

@ -1988,9 +1988,9 @@ dependencies = [
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.158" version = "0.2.159"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5"
[[package]] [[package]]
name = "libcgroups" name = "libcgroups"
@ -3932,9 +3932,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
[[package]] [[package]]
name = "tar" name = "tar"
version = "0.4.41" version = "0.4.42"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb797dad5fb5b76fcf519e702f4a589483b5ef06567f160c392832c1f5e44909" checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020"
dependencies = [ dependencies = [
"filetime", "filetime",
"libc", "libc",

@ -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.158", optional = true } libc = { version = "0.2.159", 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.158" libc = "0.2.159"
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.6.8", features = ["runtime"] } oci-spec = { version = "0.6.8", features = ["runtime"] }
nix = "0.28.0" nix = "0.28.0"
anyhow = "1.0" anyhow = "1.0"
libc = "0.2.158" # TODO (YJDoc2) upgrade to latest libc = "0.2.159" # TODO (YJDoc2) upgrade to latest
nc = "0.9.3" nc = "0.9.3"