Bump duplicated nix to 0.29 (#32764)

Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com>
This commit is contained in:
Jonathan Schwender 2024-07-13 09:48:01 +02:00 committed by GitHub
parent d667b79739
commit cd394af018
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 15 deletions

15
Cargo.lock generated
View file

@ -301,7 +301,7 @@ dependencies = [
"libc", "libc",
"log", "log",
"mach2", "mach2",
"nix 0.27.1", "nix",
"serde_json", "serde_json",
"unwind-sys", "unwind-sys",
] ]
@ -2155,7 +2155,7 @@ dependencies = [
"libc", "libc",
"libudev-sys", "libudev-sys",
"log", "log",
"nix 0.29.0", "nix",
"uuid", "uuid",
"vec_map", "vec_map",
"wasm-bindgen", "wasm-bindgen",
@ -4238,17 +4238,6 @@ version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
[[package]]
name = "nix"
version = "0.27.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
dependencies = [
"bitflags 2.6.0",
"cfg-if",
"libc",
]
[[package]] [[package]]
name = "nix" name = "nix"
version = "0.29.0" version = "0.29.0"

View file

@ -29,5 +29,5 @@ lazy_static = { workspace = true }
mach2 = "0.4" mach2 = "0.4"
[target.'cfg(all(target_os = "linux", not(any(target_arch = "arm", target_arch = "aarch64"))))'.dependencies] [target.'cfg(all(target_os = "linux", not(any(target_arch = "arm", target_arch = "aarch64"))))'.dependencies]
nix = { version = "0.27", features = ["signal"] } nix = { version = "0.29", features = ["signal"] }
unwind-sys = "0.1.4" unwind-sys = "0.1.4"

View file

@ -25,7 +25,6 @@ packages = [
"cookie", "cookie",
"futures", "futures",
"hermit-abi", "hermit-abi",
"nix",
"redox_syscall", "redox_syscall",
"syn", "syn",
"synstructure", "synstructure",