diff --git a/Cargo.lock b/Cargo.lock index 5fd981fd13..e716dfd7eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2120,6 +2120,18 @@ name = "nix" version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" +dependencies = [ + "bitflags 2.11.0", + "cfg-if", + "cfg_aliases", + "libc", +] + +[[package]] +name = "nix" +version = "0.31.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3" dependencies = [ "bitflags 2.11.0", "cfg-if", @@ -3142,7 +3154,7 @@ dependencies = [ "malachite-base", "malachite-bigint", "malachite-q", - "nix 0.30.1", + "nix 0.31.2", "num-complex", "num-traits", "parking_lot", @@ -3383,7 +3395,7 @@ dependencies = [ "memchr", "memmap2", "mt19937", - "nix 0.30.1", + "nix 0.31.2", "num-complex", "num-traits", "num_enum", @@ -3469,7 +3481,7 @@ dependencies = [ "log", "malachite-bigint", "memchr", - "nix 0.30.1", + "nix 0.31.2", "num-complex", "num-integer", "num-traits", diff --git a/Cargo.toml b/Cargo.toml index 7bd8b8f337..264bbd24f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -193,7 +193,7 @@ junction = "1.4.2" libc = "0.2.183" libffi = "5" log = "0.4.29" -nix = { version = "0.30", features = ["fs", "user", "process", "term", "time", "signal", "ioctl", "socket", "sched", "zerocopy", "dir", "hostname", "net", "poll"] } +nix = { version = "0.31", features = ["fs", "user", "process", "term", "time", "signal", "ioctl", "socket", "sched", "zerocopy", "dir", "hostname", "net", "poll"] } malachite-bigint = "0.9.1" malachite-q = "0.9.1" malachite-base = "0.9.1"