From: Ian Jackson Date: Sat, 28 Feb 2026 15:49:36 +0000 (+0000) Subject: Allow use of nix 0.31 (and use in upstream Cargo.lock) X-Git-Tag: debian/1.3.1~6^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=f92af89d1320495d6b53693cb7e081652b77f8f4;p=hippotat.git Allow use of nix 0.31 (and use in upstream Cargo.lock) Signed-off-by: Ian Jackson --- diff --git a/Cargo.lock b/Cargo.lock index 0c6d64d..d5dac28 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1163,9 +1163,9 @@ dependencies = [ [[package]] name = "nix" -version = "0.30.1" +version = "0.31.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" +checksum = "5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3" dependencies = [ "bitflags", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index c857374..db25297 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ libc = "0.2" # just for EISDIR due to IsADirectory log = "0.4.14" memchr = "2" mime = "0.3.4" -nix = { version = ">=0.25, <0.31", features = ["fs", "process", "signal", "term", "uio"] } +nix = { version = ">=0.25, <0.32", features = ["fs", "process", "signal", "term", "uio"] } parking_lot = ">= 0.11, < 0.13" pin-project-lite = "0.2" reqwest = { version = "0.12.8", features = [ "default-tls" ] }