diff --git a/Cargo.lock b/Cargo.lock index 52d92d917..3bd35550b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 44621a0ab..9e65b4b7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 }