From d95c3701c93d9fd23e6ccd9407a3332215f9e5a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Aug 2025 00:26:27 +0000 Subject: [PATCH] Update nix requirement from 0.27 to 0.30 Updates the requirements on [nix](https://github.com/nix-rust/nix) to permit the latest version. - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.27.0...v0.30.1) --- updated-dependencies: - dependency-name: nix dependency-version: 0.30.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9e18a46..0a09305 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,12 +12,12 @@ readme = "README.md" bitflags = "2.4.0" cfg-if = "^1.0.0" libc = "0.2.65" -nix = { version = "0.27", features = ["ioctl"] } +nix = { version = "0.30", features = ["ioctl"] } thiserror = "1.0.4" userfaultfd-sys = { path = "userfaultfd-sys", version = "^0.6.0" } [dev-dependencies] -nix = { version = "0.27", features = ["poll", "mman", "feature"] } +nix = { version = "0.30", features = ["poll", "mman", "feature"] } [features] default = []