From 4ec7ea33c34eafacb3d95db167e6090c6ee97e2e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 19:18:36 +0000 Subject: [PATCH] chore(deps): Bump nix from 0.27.1 to 0.28.0 Bumps [nix](https://github.com/nix-rust/nix) from 0.27.1 to 0.28.0. - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.27.1...v0.28.0) --- updated-dependencies: - dependency-name: nix dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++++++++-- src/bench/Cargo.toml | 2 +- src/storage/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1e711a211887..bb8f81fc2b9c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6348,6 +6348,18 @@ dependencies = [ "libc", ] +[[package]] +name = "nix" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" +dependencies = [ + "bitflags 2.4.0", + "cfg-if", + "cfg_aliases", + "libc", +] + [[package]] name = "nkeys" version = "0.3.2" @@ -8617,7 +8629,7 @@ dependencies = [ "itertools 0.12.0", "libc", "madsim-tokio", - "nix 0.27.1", + "nix 0.28.0", "opentelemetry", "parking_lot 0.12.1", "prometheus", @@ -9920,7 +9932,7 @@ dependencies = [ "memcomparable", "moka", "more-asserts", - "nix 0.27.1", + "nix 0.28.0", "num-integer", "parking_lot 0.12.1", "procfs 0.16.0", diff --git a/src/bench/Cargo.toml b/src/bench/Cargo.toml index 81d59587193c..2aa378d857f8 100644 --- a/src/bench/Cargo.toml +++ b/src/bench/Cargo.toml @@ -54,7 +54,7 @@ tracing-subscriber = "0.3.17" workspace-hack = { path = "../workspace-hack" } [target.'cfg(target_os = "linux")'.dependencies] -nix = { version = "0.27", features = ["fs", "mman"] } +nix = { version = "0.28", features = ["fs", "mman"] } [[bin]] name = "s3-bench" diff --git a/src/storage/Cargo.toml b/src/storage/Cargo.toml index 2a80bc909053..16f715647078 100644 --- a/src/storage/Cargo.toml +++ b/src/storage/Cargo.toml @@ -76,7 +76,7 @@ zstd = { version = "0.13", default-features = false } [target.'cfg(target_os = "linux")'.dependencies] procfs = { version = "0.16", default-features = false } libc = "0.2" -nix = { version = "0.27", features = ["fs", "mman"] } +nix = { version = "0.28", features = ["fs", "mman"] } [target.'cfg(target_os = "macos")'.dependencies] darwin-libproc = { git = "https://github.com/risingwavelabs/darwin-libproc.git", rev = "a502be24bd0971463f5bcbfe035a248d8ba503b7" }