diff --git a/Cargo.lock b/Cargo.lock index 1e711a211887b..bb8f81fc2b9c1 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 81d59587193cb..2aa378d857f83 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 2a80bc9090537..16f7156470788 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" }