From 4bb5cad1f8d08a9a04bcf51f7a0821bb9d7b968d Mon Sep 17 00:00:00 2001 From: Chad Austin Date: Thu, 21 Nov 2024 18:20:07 -0800 Subject: [PATCH] upgrade nix to 0.26.4 Summary: I am upgrading nix to 0.29.0. To ensure each step produces clean CI and is bisectable if something goes wrong, start by going from 0.25 to 0.26.4. Reviewed By: zertosh Differential Revision: D66275116 fbshipit-source-id: 63c87ff4f4c631061e5a1c721f52563dc90b7e2b --- below/btrfs/Cargo.toml | 2 +- below/cgroupfs/Cargo.toml | 2 +- below/ethtool/Cargo.toml | 2 +- below/procfs/Cargo.toml | 2 +- below/resctrlfs/Cargo.toml | 2 +- below/store/Cargo.toml | 2 +- below/tc/Cargo.toml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/below/btrfs/Cargo.toml b/below/btrfs/Cargo.toml index 9512f411..9a50e489 100644 --- a/below/btrfs/Cargo.toml +++ b/below/btrfs/Cargo.toml @@ -13,7 +13,7 @@ license = "Apache-2.0" [dependencies] common = { package = "below-common", version = "0.8.1", path = "../common" } libc = "0.2.139" -nix = "0.25" +nix = "0.26.4" openat = "0.1.21" rand = { version = "0.8", features = ["small_rng"] } rand_distr = "0.4" diff --git a/below/cgroupfs/Cargo.toml b/below/cgroupfs/Cargo.toml index b9a51ec1..5d45806c 100644 --- a/below/cgroupfs/Cargo.toml +++ b/below/cgroupfs/Cargo.toml @@ -12,7 +12,7 @@ license = "Apache-2.0" [dependencies] common = { package = "below-common", version = "0.8.1", path = "../common" } -nix = "0.25" +nix = "0.26.4" openat = "0.1.21" serde = { version = "1.0.185", features = ["derive", "rc"] } thiserror = "1.0.64" diff --git a/below/ethtool/Cargo.toml b/below/ethtool/Cargo.toml index 64b9ca25..d8985526 100644 --- a/below/ethtool/Cargo.toml +++ b/below/ethtool/Cargo.toml @@ -10,6 +10,6 @@ repository = "https://github.com/facebookincubator/below" license = "Apache-2.0" [dependencies] -nix = "0.25" +nix = "0.26.4" serde = { version = "1.0.185", features = ["derive", "rc"] } thiserror = "1.0.64" diff --git a/below/procfs/Cargo.toml b/below/procfs/Cargo.toml index ea9ddbc3..12151e5c 100644 --- a/below/procfs/Cargo.toml +++ b/below/procfs/Cargo.toml @@ -14,7 +14,7 @@ license = "Apache-2.0" common = { package = "below-common", version = "0.8.1", path = "../common" } lazy_static = "1.4" libc = "0.2.139" -nix = "0.25" +nix = "0.26.4" openat = "0.1.21" parking_lot = { version = "0.12.1", features = ["send_guard"] } serde = { version = "1.0.185", features = ["derive", "rc"] } diff --git a/below/resctrlfs/Cargo.toml b/below/resctrlfs/Cargo.toml index bd57161a..e05467ec 100644 --- a/below/resctrlfs/Cargo.toml +++ b/below/resctrlfs/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/facebookincubator/below" license = "Apache-2.0" [dependencies] -nix = "0.25" +nix = "0.26.4" openat = "0.1.21" serde = { version = "1.0.185", features = ["derive", "rc"] } thiserror = "1.0.64" diff --git a/below/store/Cargo.toml b/below/store/Cargo.toml index fb2f482f..9ce03596 100644 --- a/below/store/Cargo.toml +++ b/below/store/Cargo.toml @@ -18,7 +18,7 @@ humantime = "2.1" maplit = "1.0" memmap2 = "0.5.10" model = { package = "below-model", version = "0.8.1", path = "../model" } -nix = "0.25" +nix = "0.26.4" serde = { version = "1.0.185", features = ["derive", "rc"] } serde_cbor = "0.11" slog = { version = "2.7", features = ["max_level_trace", "nested-values"] } diff --git a/below/tc/Cargo.toml b/below/tc/Cargo.toml index 9db23e56..10c55dcf 100644 --- a/below/tc/Cargo.toml +++ b/below/tc/Cargo.toml @@ -13,6 +13,6 @@ license = "Apache-2.0" netlink-packet-core = "0.7.0" netlink-packet-route = "0.19.0" netlink-sys = "0.8.5" -nix = "0.25" +nix = "0.26.4" serde = { version = "1.0.185", features = ["derive", "rc"] } thiserror = "1.0.64"