diff --git a/Cargo.lock b/Cargo.lock index 48170cf6..ef4d990c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -565,7 +565,7 @@ dependencies = [ "memmap2 0.9.9", "memtrack", "nestify", - "nix 0.29.0", + "nix 0.31.1", "object 0.36.7", "open", "procfs", @@ -1592,7 +1592,7 @@ name = "instrument-hooks-bindings" version = "0.1.0" dependencies = [ "cc", - "nix 0.30.1", + "nix 0.31.1", ] [[package]] @@ -2047,9 +2047,9 @@ dependencies = [ [[package]] name = "nix" -version = "0.29.0" +version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" +checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" dependencies = [ "bitflags 2.10.0", "cfg-if", @@ -2059,9 +2059,9 @@ dependencies = [ [[package]] name = "nix" -version = "0.30.1" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" +checksum = "225e7cfe711e0ba79a68baeddb2982723e4235247aefce1482f2f16c27865b66" dependencies = [ "bitflags 2.10.0", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index 8be093bf..718d1c9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,7 +59,7 @@ linux-perf-data = { git = "https://github.com/CodSpeedHQ/linux-perf-data.git", r ] } # feat: support zstd compressed records debugid = "0.8.0" memmap2 = "0.9.5" -nix = { version = "0.29.0", features = ["fs", "time", "user"] } +nix = { version = "0.31.1", features = ["fs", "time", "user"] } futures = "0.3.31" runner-shared = { path = "crates/runner-shared" } memtrack = { path = "crates/memtrack", default-features = false } diff --git a/crates/instrument-hooks-bindings/Cargo.toml b/crates/instrument-hooks-bindings/Cargo.toml index 8643104c..57ede978 100644 --- a/crates/instrument-hooks-bindings/Cargo.toml +++ b/crates/instrument-hooks-bindings/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2024" [dependencies] -nix = { version = "0.30.1", features = ["time"] } +nix = { version = "0.31.1", features = ["time"] } [build-dependencies] cc = "1.0"