From 7a5fd4fbbeb079da81bafb64e30bebf3bb12431a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Tue, 17 Feb 2026 00:40:13 +0100 Subject: [PATCH 1/2] instrument-hooks-bindings: Bump nix to 0.31.1 --- crates/instrument-hooks-bindings/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From 3d1b9ff6ea23e34b9ab7409fc7835d20d9568013 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Tue, 17 Feb 2026 00:42:04 +0100 Subject: [PATCH 2/2] cargo: Bump dependencies on nix 0.31.1 --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 49dd9ab5..3ab535a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -582,7 +582,7 @@ dependencies = [ "memmap2 0.9.9", "memtrack", "nestify", - "nix 0.29.0", + "nix 0.31.1", "object 0.36.7", "open", "procfs", @@ -1608,7 +1608,7 @@ name = "instrument-hooks-bindings" version = "0.1.0" dependencies = [ "cc", - "nix 0.30.1", + "nix 0.31.1", ] [[package]] @@ -2063,9 +2063,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", @@ -2075,9 +2075,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 a8261886..23fcb215 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,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 }