Merge pull request #1542 from sharkdp/dependabot/cargo/nix-0.28.0

build(deps): bump nix from 0.27.1 to 0.28.0
This commit is contained in:
Thayne McCombs 2024-05-01 11:46:53 -06:00 committed by GitHub
commit ddd3aae249
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 13 deletions

13
Cargo.lock generated
View File

@ -327,7 +327,7 @@ dependencies = [
"jemallocator", "jemallocator",
"libc", "libc",
"lscolors", "lscolors",
"nix 0.27.1", "nix 0.28.0",
"normpath", "normpath",
"nu-ansi-term", "nu-ansi-term",
"regex", "regex",
@ -501,17 +501,6 @@ dependencies = [
"libc", "libc",
] ]
[[package]]
name = "nix"
version = "0.27.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
dependencies = [
"bitflags 2.5.0",
"cfg-if",
"libc",
]
[[package]] [[package]]
name = "nix" name = "nix"
version = "0.28.0" version = "0.28.0"

View File

@ -65,7 +65,7 @@ default-features = false
features = ["nu-ansi-term"] features = ["nu-ansi-term"]
[target.'cfg(unix)'.dependencies] [target.'cfg(unix)'.dependencies]
nix = { version = "0.27.1", default-features = false, features = ["signal", "user"] } nix = { version = "0.28.0", default-features = false, features = ["signal", "user"] }
[target.'cfg(all(unix, not(target_os = "redox")))'.dependencies] [target.'cfg(all(unix, not(target_os = "redox")))'.dependencies]
libc = "0.2" libc = "0.2"