Skip to content

Commit

Permalink
Bump the patch group with 5 updates
Browse files Browse the repository at this point in the history
Bumps the patch group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.9` | `0.3.10` |
| [libc](https://github.com/rust-lang/libc) | `0.2.166` | `0.2.167` |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.40` | `0.1.41` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.18` | `0.3.19` |
| [tracing-journald](https://github.com/tokio-rs/tracing) | `0.3.0` | `0.3.1` |

Updates `errno` from 0.3.9 to 0.3.10
- [Release notes](https://github.com/lambda-fairy/rust-errno/releases)
- [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md)
- [Commits](lambda-fairy/rust-errno@v0.3.9...v0.3.10)

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

Updates `tracing` from 0.1.40 to 0.1.41
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-0.1.40...tracing-0.1.41)

Updates `tracing-subscriber` from 0.3.18 to 0.3.19
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.18...tracing-subscriber-0.3.19)

Updates `tracing-journald` from 0.3.0 to 0.3.1
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-journald-0.3.0...tracing-journald-0.3.1)

---
updated-dependencies:
- dependency-name: errno
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: tracing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: tracing-subscriber
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: tracing-journald
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Akiyama <[email protected]>
  • Loading branch information
dependabot[bot] authored and YamasouA committed Dec 7, 2024
1 parent cc14b75 commit 9412cbf
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 28 deletions.
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions crates/libcgroups/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ fixedbitset = "0.5.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.9", optional = true }
libc = { version = "0.2.166", optional = true }
errno = { version = "0.3.10", optional = true }
libc = { version = "0.2.167", optional = true }
thiserror = "2.0.3"
tracing = { version = "0.1.40", features = ["attributes"] }
tracing = { version = "0.1.41", features = ["attributes"] }

[dev-dependencies]
anyhow = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/libcontainer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ chrono = { version = "0.4", default-features = false, features = [
"serde",
] }
fastrand = "^2.1.1"
libc = "0.2.166"
libc = "0.2.167"
nix = { version = "0.28.0", features = [
"socket",
"sched",
Expand All @@ -48,7 +48,7 @@ serde_json = "1.0"
rust-criu = "0.4.0"
regex = { version = "1.10.6", default-features = false, features = ["std", "unicode-perl"] }
thiserror = "2.0.3"
tracing = { version = "0.1.40", features = ["attributes"] }
tracing = { version = "0.1.41", features = ["attributes"] }
safe-path = "0.1.0"
nc = "0.9.5"

Expand Down
6 changes: 3 additions & 3 deletions crates/youki/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ wasmer-wasix = { version = "0.9.0", optional = true }
wasmedge-sdk = { version = "0.14.0", optional = true }
wasmtime = { version = "26.0.1", optional = true }
wasi-common = { version = "26.0.1", optional = true }
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
tracing-journald = "0.3.0"
tracing = { version = "0.1.41", features = ["attributes"] }
tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] }
tracing-journald = "0.3.1"

[dev-dependencies]
serial_test = "3.1.1"
Expand Down
4 changes: 2 additions & 2 deletions tests/contest/contest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ uuid = "1.11"
which = "7.0.0"
tempfile = "3"
scopeguard = "1.2.0"
tracing = { version = "0.1.40", features = ["attributes"]}
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
tracing = { version = "0.1.41", features = ["attributes"]}
tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] }

[dependencies.clap]
version = "4.1.6"
Expand Down
2 changes: 1 addition & 1 deletion tests/contest/runtimetest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"
oci-spec = { version = "0.7.1", features = ["runtime"] }
nix = "0.28.0"
anyhow = "1.0"
libc = "0.2.166" # TODO (YJDoc2) upgrade to latest
libc = "0.2.167" # TODO (YJDoc2) upgrade to latest
nc = "0.9.5"

0 comments on commit 9412cbf

Please sign in to comment.