diff --git a/Cargo.lock b/Cargo.lock index f3803fd..882a946 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -703,6 +703,18 @@ name = "nix" version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" +dependencies = [ + "bitflags", + "cfg-if", + "cfg_aliases", + "libc", +] + +[[package]] +name = "nix" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db9f2b173ed7678e98df5c31c60c3d49595cb37e9b58c71e85ec03e88a278fae" dependencies = [ "bitflags", "cfg-if", @@ -1355,7 +1367,7 @@ dependencies = [ "ctor", "dns-lookup", "libc", - "nix", + "nix 0.31.0", "parse_datetime", "phf", "phf_codegen", @@ -1535,7 +1547,7 @@ name = "uu_mesg" version = "0.0.1" dependencies = [ "clap", - "nix", + "nix 0.31.0", "uucore 0.2.2", ] @@ -1578,7 +1590,7 @@ version = "0.0.1" dependencies = [ "clap", "libc", - "nix", + "nix 0.31.0", "uucore 0.2.2", ] @@ -1596,7 +1608,7 @@ name = "uu_uuidgen" version = "0.0.1" dependencies = [ "clap", - "nix", + "nix 0.31.0", "rand", "thiserror", "uucore 0.2.2", @@ -1620,7 +1632,7 @@ dependencies = [ "glob", "jiff", "libc", - "nix", + "nix 0.30.1", "num-traits", "number_prefix", "os_display", @@ -1644,7 +1656,7 @@ dependencies = [ "fluent-syntax", "jiff", "libc", - "nix", + "nix 0.30.1", "os_display", "phf", "thiserror", @@ -1714,7 +1726,7 @@ checksum = "29a84842bcddea9787b70feefc8a4aad9be182225b13b5ad7ee04bdb601673c6" dependencies = [ "ctor", "libc", - "nix", + "nix 0.30.1", "pretty_assertions", "rand", "regex", diff --git a/Cargo.toml b/Cargo.toml index e2efeee..e7d4c72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ libc = "0.2.171" libmount-sys = "0.1.1" linux-raw-sys = { version = "0.12.0", features = ["ioctl"] } md-5 = "0.10.6" -nix = { version = "0.30", default-features = false } +nix = { version = "0.31", default-features = false } parse_datetime = "0.11.0" phf = "0.13.0" phf_codegen = "0.13.0"