diff --git a/Cargo.lock b/Cargo.lock index 50a5e40884..2c05cc2e1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -989,7 +989,7 @@ version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a011bbe2c35ce9c1f143b7af6f94f29a167beb4cd1d29e6740ce836f723120e" dependencies = [ - "nix", + "nix 0.26.2", "windows-sys 0.48.0", ] @@ -2519,6 +2519,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 = "7.1.3" @@ -2603,7 +2614,7 @@ dependencies = [ "log", "miette", "mimalloc", - "nix", + "nix 0.27.0", "nu-ansi-term", "nu-cli", "nu-cmd-base", @@ -2799,7 +2810,7 @@ dependencies = [ "mime_guess", "mockito", "native-tls", - "nix", + "nix 0.27.0", "notify-debouncer-full", "nu-ansi-term", "nu-cmd-base", @@ -2995,7 +3006,7 @@ dependencies = [ "libproc", "log", "mach2", - "nix", + "nix 0.27.0", "ntapi", "once_cell", "procfs", diff --git a/Cargo.toml b/Cargo.toml index 6a8d9786b4..f0f1b9716b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -87,7 +87,7 @@ signal-hook = { version = "0.3", default-features = false } winresource = "0.1" [target.'cfg(target_family = "unix")'.dependencies] -nix = { version = "0.26", default-features = false, features = [ +nix = { version = "0.27", default-features = false, features = [ "signal", "process", "fs", diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index b6b308e7f9..4f42c2df94 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -100,7 +100,7 @@ winreg = "0.50" [target.'cfg(unix)'.dependencies] libc = "0.2" umask = "2.1" -nix = { version = "0.26", default-features = false, features = ["user"] } +nix = { version = "0.27", default-features = false, features = ["user"] } [target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.trash] optional = true diff --git a/crates/nu-system/Cargo.toml b/crates/nu-system/Cargo.toml index 8b922a7f40..72ff29122a 100644 --- a/crates/nu-system/Cargo.toml +++ b/crates/nu-system/Cargo.toml @@ -18,7 +18,7 @@ log = "0.4" sysinfo = "0.29" [target.'cfg(target_family = "unix")'.dependencies] -nix = { version = "0.26", default-features = false, features = ["fs", "term", "process", "signal"] } +nix = { version = "0.27", default-features = false, features = ["fs", "term", "process", "signal"] } [target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies] procfs = "0.15"