build(deps): update rust crate nix to 0.27.0

This commit is contained in:
renovate[bot] 2023-08-28 04:11:34 +00:00 committed by GitHub
parent 38e9f59ee7
commit 4af140bfb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 5 deletions

19
Cargo.lock generated
View File

@ -2111,6 +2111,17 @@ dependencies = [
"static_assertions",
]
[[package]]
name = "nix"
version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "896d4664b919f48478f3ce02c502adfe9bffeb61563d2a12ddf1aad8f6cd926f"
dependencies = [
"bitflags 2.3.3",
"cfg-if",
"libc",
]
[[package]]
name = "nom"
version = "5.1.3"
@ -3010,7 +3021,7 @@ dependencies = [
"indexmap 1.9.3",
"log",
"mockall",
"nix",
"nix 0.27.0",
"notify-rust",
"nu-ansi-term",
"once_cell",
@ -3060,7 +3071,7 @@ dependencies = [
"lazycell",
"libc",
"mach2",
"nix",
"nix 0.26.2",
"num-traits",
"uom",
"winapi",
@ -3766,7 +3777,7 @@ version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd"
dependencies = [
"nix",
"nix 0.26.2",
"winapi",
]
@ -3803,7 +3814,7 @@ dependencies = [
"futures-sink",
"futures-util",
"hex",
"nix",
"nix 0.26.2",
"once_cell",
"ordered-stream",
"rand",

View File

@ -114,7 +114,7 @@ features = [
]
[target.'cfg(not(windows))'.dependencies]
nix = { version = "0.26.2", default-features = false, features = ["feature", "fs", "user"] }
nix = { version = "0.27.0", default-features = false, features = ["feature", "fs", "user"] }
[build-dependencies]
shadow-rs = { version = "0.23.0", default-features = false }