diff --git a/Cargo.lock b/Cargo.lock index 4f753f10..0687e63f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1789,6 +1789,18 @@ dependencies = [ "libc", ] +[[package]] +name = "nix" +version = "0.26.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46a58d1d356c6597d08cde02c2f09d785b09e28711837b1ed667dc652c08a694" +dependencies = [ + "bitflags", + "cfg-if 1.0.0", + "libc", + "static_assertions", +] + [[package]] name = "nom" version = "5.1.2" @@ -2761,7 +2773,7 @@ dependencies = [ "local_ipaddress", "log", "mockall", - "nix 0.25.0", + "nix 0.26.1", "notify-rust", "nu-ansi-term", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index 62fa2a71..1dbd711c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -115,7 +115,7 @@ features = [ ] [target.'cfg(not(windows))'.dependencies] -nix = { version = "0.25.0", default-features = false, features = ["feature", "fs", "user"] } +nix = { version = "0.26.1", default-features = false, features = ["feature", "fs", "user"] } [build-dependencies] shadow-rs = { version = "0.18.0", default-features = false }