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 [serde_json](https://github.com/serde-rs/json).


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

Updates `serde_json` from 1.0.128 to 1.0.129
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](https://github.com/serde-rs/json/compare/1.0.128...1.0.129)

---
updated-dependencies:
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: serde_json
  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-10-18 00:10:38 +00:00 committed by GitHub
parent 1e9eb48299
commit 85b653c0f6
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]]
name = "libc"
version = "0.2.159"
version = "0.2.161"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5"
checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
[[package]]
name = "libcgroups"
@ -3508,9 +3508,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.128"
version = "1.0.129"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
checksum = "6dbcf9b78a125ee667ae19388837dd12294b858d101fdd393cb9d5501ef09eb2"
dependencies = [
"itoa",
"memchr",

@ -28,7 +28,7 @@ serde = { version = "1.0", features = ["derive"] }
rbpf = { version = "0.3.0", optional = true }
libbpf-sys = { version = "1.4.5", 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"
tracing = { version = "0.1.40", features = ["attributes"] }

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

@ -7,5 +7,5 @@ edition = "2021"
oci-spec = { version = "0.7.0", features = ["runtime"] }
nix = "0.28.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"