mirror of
https://github.com/containers/youki
synced 2024-11-09 19:25:15 +01:00
Merge pull request #2790 from containers/dependabot/cargo/patch-2c960a01ee
This commit is contained in:
commit
8e42c2d98e
16
Cargo.lock
generated
16
Cargo.lock
generated
@ -126,9 +126,9 @@ checksum = "70033777eb8b5124a81a1889416543dddef2de240019b674c81285a2635a7e1e"
|
||||
|
||||
[[package]]
|
||||
name = "anyhow"
|
||||
version = "1.0.83"
|
||||
version = "1.0.86"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3"
|
||||
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
|
||||
|
||||
[[package]]
|
||||
name = "arbitrary"
|
||||
@ -1909,9 +1909,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "libc"
|
||||
version = "0.2.154"
|
||||
version = "0.2.155"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
|
||||
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
||||
|
||||
[[package]]
|
||||
name = "libcgroups"
|
||||
@ -3836,18 +3836,18 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "thiserror"
|
||||
version = "1.0.60"
|
||||
version = "1.0.61"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18"
|
||||
checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
|
||||
dependencies = [
|
||||
"thiserror-impl",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "thiserror-impl"
|
||||
version = "1.0.60"
|
||||
version = "1.0.61"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524"
|
||||
checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
@ -28,8 +28,8 @@ serde = { version = "1.0", features = ["derive"] }
|
||||
rbpf = { version = "0.2.0", optional = true }
|
||||
libbpf-sys = { version = "1.4.1", optional = true }
|
||||
errno = { version = "0.3.9", optional = true }
|
||||
libc = { version = "0.2.154", optional = true }
|
||||
thiserror = "1.0.60"
|
||||
libc = { version = "0.2.155", optional = true }
|
||||
thiserror = "1.0.61"
|
||||
tracing = { version = "0.1.40", features = ["attributes"] }
|
||||
|
||||
[dev-dependencies]
|
||||
|
@ -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.154"
|
||||
libc = "0.2.155"
|
||||
nix = { version = "0.27.1", features = [
|
||||
"socket",
|
||||
"sched",
|
||||
@ -50,7 +50,7 @@ serde_json = "1.0"
|
||||
rust-criu = "0.4.0"
|
||||
protobuf = "= 3.2.0" # https://github.com/checkpoint-restore/rust-criu/issues/19
|
||||
regex = { version = "1.10.4", default-features = false, features = ["std", "unicode-perl"] }
|
||||
thiserror = "1.0.60"
|
||||
thiserror = "1.0.61"
|
||||
tracing = { version = "0.1.40", features = ["attributes"] }
|
||||
safe-path = "0.1.0"
|
||||
nc = "0.8.20"
|
||||
|
@ -27,7 +27,7 @@ default-features = false
|
||||
features = ["std", "suggestions", "derive", "cargo", "help", "usage", "error-context"]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.83"
|
||||
anyhow = "1.0.86"
|
||||
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
|
||||
libcgroups = { path = "../libcgroups", default-features = false, version = "0.3.2" } # MARK: Version
|
||||
libcontainer = { path = "../libcontainer", default-features = false, version = "0.3.2" } # MARK: Version
|
||||
@ -56,5 +56,5 @@ tempfile = "3"
|
||||
scopeguard = "1.2.0"
|
||||
|
||||
[build-dependencies]
|
||||
anyhow = "1.0.83"
|
||||
anyhow = "1.0.86"
|
||||
vergen = { version = "8.2.10", features = ["git", "gitcl"] }
|
||||
|
@ -7,6 +7,6 @@ edition = "2021"
|
||||
oci-spec = { version = "0.6.4", features = ["runtime"] }
|
||||
nix = "0.27.1"
|
||||
anyhow = "1.0"
|
||||
libc = "0.2.154" # TODO (YJDoc2) upgrade to latest
|
||||
libc = "0.2.155" # TODO (YJDoc2) upgrade to latest
|
||||
nc = "0.8.20"
|
||||
|
||||
|
@ -6,5 +6,5 @@ edition = "2021"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.83"
|
||||
anyhow = "1.0.86"
|
||||
crossbeam = "0.8.4"
|
||||
|
Loading…
Reference in New Issue
Block a user