From 20e3f88bda2c0eed73af8aef7f70bbb733261670 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Jan 2026 19:43:08 +0000 Subject: [PATCH] chore(deps): bump nix from 0.30.1 to 0.31.1 Bumps [nix](https://github.com/nix-rust/nix) from 0.30.1 to 0.31.1. - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.30.1...v0.31.1) --- updated-dependencies: - dependency-name: nix dependency-version: 0.31.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++++++++-- Cargo.toml | 2 +- milu/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7d554f05..c70934fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1937,7 +1937,7 @@ dependencies = [ "anyhow", "async-trait", "clap", - "nix 0.30.1", + "nix 0.31.1", "nom", "nom-language", "nom_locate", @@ -2030,6 +2030,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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "225e7cfe711e0ba79a68baeddb2982723e4235247aefce1482f2f16c27865b66" dependencies = [ "bitflags", "cfg-if", @@ -2700,7 +2712,7 @@ dependencies = [ "lru", "milu", "mime_guess", - "nix 0.30.1", + "nix 0.31.1", "pin-project-lite", "prometheus", "quinn", diff --git a/Cargo.toml b/Cargo.toml index 0fbd5dd0..7fb6fc38 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,7 @@ russh = { version = "0.56.0", optional = true } # unix deps [target.'cfg(not(target_os = "windows"))'.dependencies] -nix = { version = "0.30" , features = ["socket","net","zerocopy","uio","fs"] } +nix = { version = "0.31" , features = ["socket","net","zerocopy","uio","fs"] } # windows deps [target.'cfg(target_os = "windows")'.dependencies] diff --git a/milu/Cargo.toml b/milu/Cargo.toml index 73398d1a..d57fff99 100644 --- a/milu/Cargo.toml +++ b/milu/Cargo.toml @@ -16,6 +16,6 @@ async-trait = "0.1" clap = "4.5" rustyline = "17" rustyline-derive = "0.11" -nix = {version = "0.30",features = ["fs"]} +nix = {version = "0.31",features = ["fs"]} tokio-test = "0.4" tokio = { version = "1", features = ["full"] }