From de0ef9635e9f9339e063ce5f8dfb5f31e11d60e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 12 Sep 2026 04:46:17 +0000 Subject: [PATCH] chore(deps): bump nix from 0.29.0 to 0.31.3 in /fuzz Bumps [nix](https://github.com/nix-rust/nix) from 0.29.0 to 0.31.3. - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.29.0...v0.31.3) --- updated-dependencies: - dependency-name: nix dependency-version: 0.31.3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- fuzz/Cargo.lock | 16 ++++++++++++++-- fuzz/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index f05a360..d19ceb2 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -634,7 +634,7 @@ dependencies = [ "mm", "net", "nilix-syz-fuzzer", - "nix", + "nix 0.31.3", "rand", "serde", "serde_json", @@ -653,7 +653,7 @@ dependencies = [ "hex", "hmac", "memmap2", - "nix", + "nix 0.29.0", "rand", "serde", "serde_json", @@ -674,6 +674,18 @@ dependencies = [ "libc", ] +[[package]] +name = "nix" +version = "0.31.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d" +dependencies = [ + "bitflags", + "cfg-if", + "cfg_aliases", + "libc", +] + [[package]] name = "once_cell" version = "1.21.4" diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 0ab2b71..4b574a6 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -38,7 +38,7 @@ kernel_core = { path = "../kernel/kernel_core" } anyhow = { version = "1.0", optional = true } nilix-syz-fuzzer = { path = "../userspace/nilix-syz-fuzzer", optional = true } tempfile = { version = "3.0", optional = true } -nix = { version = "0.29", features = ["signal"], optional = true } +nix = { version = "0.31", features = ["signal"], optional = true } hex = { version = "0.4", optional = true } sha2 = { version = "0.10", optional = true } rand = { version = "0.8", optional = true }