1
0
mirror of https://github.com/containers/youki synced 2025-04-30 21:27:59 +02:00

Bump the patch group with 2 updates

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


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

Updates `chrono` from 0.4.38 to 0.4.39
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](https://github.com/chronotope/chrono/compare/v0.4.38...v0.4.39)

---
updated-dependencies:
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: chrono
  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-12-10 00:27:35 +00:00 committed by GitHub
parent ae3f11bc8b
commit 2e0343015e
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

@ -450,9 +450,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
[[package]]
name = "chrono"
version = "0.4.38"
version = "0.4.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
dependencies = [
"android-tzdata",
"iana-time-zone",
@ -1957,9 +1957,9 @@ dependencies = [
[[package]]
name = "libc"
version = "0.2.167"
version = "0.2.168"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09d6582e104315a817dff97f75133544b2e094ee22447d2acf4a74e189ba06fc"
checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d"
[[package]]
name = "libcgroups"

@ -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.10", optional = true }
libc = { version = "0.2.167", optional = true }
libc = { version = "0.2.168", optional = true }
thiserror = "2.0.6"
tracing = { version = "0.1.41", features = ["attributes"] }

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

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