From 0797810af435f6b2ae434a614f5ac1b10fa57e7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Aug 2022 16:59:18 -0600 Subject: [PATCH] chore: bump nix from 0.24.2 to 0.25.0 (#27179) * chore: bump nix from 0.24.2 to 0.25.0 Bumps [nix](https://github.com/nix-rust/nix) from 0.24.2 to 0.25.0. - [Release notes](https://github.com/nix-rust/nix/releases) - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.24.2...v0.25.0) --- updated-dependencies: - dependency-name: nix dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * [auto-commit] Update all Cargo lock files Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite --- Cargo.lock | 29 +++++++++++++++++++++-------- install/Cargo.toml | 2 +- net-utils/Cargo.toml | 2 +- perf/Cargo.toml | 2 +- programs/bpf/Cargo.lock | 10 ++++++---- streamer/Cargo.toml | 2 +- sys-tuner/Cargo.toml | 2 +- 7 files changed, 32 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fb3eac355b..8616c2632f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -270,9 +270,9 @@ dependencies = [ [[package]] name = "autocfg" -version = "1.0.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "autotools" @@ -1088,7 +1088,7 @@ version = "3.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b37feaa84e6861e00a1f5e5aa8da3ee56d605c9992d33e082786754828e20865" dependencies = [ - "nix", + "nix 0.24.2", "winapi 0.3.9", ] @@ -2743,7 +2743,20 @@ dependencies = [ "bitflags", "cfg-if 1.0.0", "libc", +] + +[[package]] +name = "nix" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb" +dependencies = [ + "autocfg", + "bitflags", + "cfg-if 1.0.0", + "libc", "memoffset", + "pin-utils", ] [[package]] @@ -5403,7 +5416,7 @@ dependencies = [ "dirs-next", "indicatif", "lazy_static", - "nix", + "nix 0.25.0", "reqwest", "semver 1.0.13", "serde", @@ -5662,7 +5675,7 @@ dependencies = [ "clap 3.1.8", "crossbeam-channel", "log", - "nix", + "nix 0.25.0", "rand 0.7.3", "serde", "serde_derive", @@ -5699,7 +5712,7 @@ dependencies = [ "libc", "log", "matches", - "nix", + "nix 0.25.0", "rand 0.7.3", "rayon", "serde", @@ -6316,7 +6329,7 @@ dependencies = [ "itertools", "libc", "log", - "nix", + "nix 0.25.0", "pem", "percentage", "pkcs8", @@ -6341,7 +6354,7 @@ dependencies = [ "clap 2.33.3", "libc", "log", - "nix", + "nix 0.25.0", "solana-logger 1.12.0", "solana-version", "sysctl", diff --git a/install/Cargo.toml b/install/Cargo.toml index dae1b8016b..af4cffd7de 100644 --- a/install/Cargo.toml +++ b/install/Cargo.toml @@ -21,7 +21,7 @@ ctrlc = { version = "3.2.2", features = ["termination"] } dirs-next = "2.0.0" indicatif = "0.17.0" lazy_static = "1.4.0" -nix = "0.24.2" +nix = "0.25.0" reqwest = { version = "0.11.11", default-features = false, features = ["blocking", "brotli", "deflate", "gzip", "rustls-tls", "json"] } semver = "1.0.13" serde = { version = "1.0.143", features = ["derive"] } diff --git a/net-utils/Cargo.toml b/net-utils/Cargo.toml index a0530e61f7..a26760134e 100644 --- a/net-utils/Cargo.toml +++ b/net-utils/Cargo.toml @@ -14,7 +14,7 @@ bincode = "1.3.3" clap = { version = "3.1.5", features = ["cargo"] } crossbeam-channel = "0.5" log = "0.4.17" -nix = "0.24.2" +nix = "0.25.0" rand = "0.7.0" serde = "1.0.143" serde_derive = "1.0.103" diff --git a/perf/Cargo.toml b/perf/Cargo.toml index 202bf36c68..3380f2ac89 100644 --- a/perf/Cargo.toml +++ b/perf/Cargo.toml @@ -30,7 +30,7 @@ solana-vote-program = { path = "../programs/vote", version = "=1.12.0" } [target."cfg(target_os = \"linux\")".dependencies] caps = "0.5.3" libc = "0.2.131" -nix = "0.24.2" +nix = "0.25.0" [lib] name = "solana_perf" diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index ef2dd18fb8..3c5e530501 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -256,9 +256,9 @@ dependencies = [ [[package]] name = "autocfg" -version = "1.0.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "autotools" @@ -2527,14 +2527,16 @@ dependencies = [ [[package]] name = "nix" -version = "0.24.2" +version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc" +checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb" dependencies = [ + "autocfg", "bitflags", "cfg-if 1.0.0", "libc", "memoffset", + "pin-utils", ] [[package]] diff --git a/streamer/Cargo.toml b/streamer/Cargo.toml index e72816d030..97b42aa58c 100644 --- a/streamer/Cargo.toml +++ b/streamer/Cargo.toml @@ -17,7 +17,7 @@ indexmap = "1.9.1" itertools = "0.10.3" libc = "0.2.131" log = "0.4.17" -nix = "0.24.2" +nix = "0.25.0" pem = "1.0.2" percentage = "0.1.0" pkcs8 = { version = "0.8.0", features = ["alloc"] } diff --git a/sys-tuner/Cargo.toml b/sys-tuner/Cargo.toml index a98a719300..f1cc3c97e2 100644 --- a/sys-tuner/Cargo.toml +++ b/sys-tuner/Cargo.toml @@ -20,7 +20,7 @@ solana-version = { path = "../version", version = "=1.12.0" } [target."cfg(unix)".dependencies] unix_socket2 = "0.5.4" users = "0.10.0" -nix = "0.24.2" +nix = "0.25.0" sysctl = "0.4.4" [lib]