From fdb0100703eb4f9c3a018de8ef52363fd7a38a1c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 28 Aug 2023 02:30:55 +0000 Subject: [PATCH] Update Rust crate nix to 0.27.0 --- Cargo.lock | 13 +++---------- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e36fbbe..63c0026 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -254,14 +254,13 @@ dependencies = [ [[package]] name = "nix" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" +checksum = "896d4664b919f48478f3ce02c502adfe9bffeb61563d2a12ddf1aad8f6cd926f" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.4.0", "cfg-if", "libc", - "static_assertions", ] [[package]] @@ -383,12 +382,6 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" -[[package]] -name = "static_assertions" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" - [[package]] name = "syn" version = "1.0.109" diff --git a/Cargo.toml b/Cargo.toml index 95405da..f4b9737 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ libc = "0.2.147" # Saves nontrivial unsafe and platform specific code (Darwin vs other Unixes, # MAX_PATH and more : consider it weak and something we can remove if expedient # later. -nix = { version = "0.26.2", default-features = false, features = ["dir"] } +nix = { version = "0.27.0", default-features = false, features = ["dir"] } [target.'cfg(windows)'.dependencies] aligned = "0.4.1"