diff --git a/Cargo.lock b/Cargo.lock index 2af143e74..f8c9efc1b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -997,11 +997,11 @@ dependencies = [ [[package]] name = "ctrlc" -version = "3.2.1" +version = "3.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a19c6cedffdc8c03a3346d723eb20bd85a13362bb96dc2ac000842c6381ec7bf" +checksum = "b37feaa84e6861e00a1f5e5aa8da3ee56d605c9992d33e082786754828e20865" dependencies = [ - "nix 0.23.1", + "nix", "winapi 0.3.9", ] @@ -2508,19 +2508,6 @@ dependencies = [ "winapi 0.3.9", ] -[[package]] -name = "nix" -version = "0.23.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6" -dependencies = [ - "bitflags", - "cc", - "cfg-if 1.0.0", - "libc", - "memoffset", -] - [[package]] name = "nix" version = "0.24.0" @@ -4970,7 +4957,7 @@ dependencies = [ "dirs-next", "indicatif", "lazy_static", - "nix 0.24.0", + "nix", "reqwest", "semver 1.0.7", "serde", @@ -5221,7 +5208,7 @@ dependencies = [ "clap 3.1.8", "crossbeam-channel", "log", - "nix 0.24.0", + "nix", "rand 0.7.3", "serde", "serde_derive", @@ -5258,7 +5245,7 @@ dependencies = [ "libc", "log", "matches", - "nix 0.24.0", + "nix", "rand 0.7.3", "rayon", "serde", @@ -5844,7 +5831,7 @@ dependencies = [ "itertools", "libc", "log", - "nix 0.24.0", + "nix", "pem", "pkcs8", "quinn", @@ -5866,7 +5853,7 @@ dependencies = [ "clap 2.33.3", "libc", "log", - "nix 0.24.0", + "nix", "solana-logger 1.11.0", "solana-version", "sysctl", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 0967b417c..b139bce34 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -17,7 +17,7 @@ console = "0.15.0" const_format = "0.2.22" criterion-stats = "0.3.0" crossbeam-channel = "0.5" -ctrlc = { version = "3.2.1", features = ["termination"] } +ctrlc = { version = "3.2.2", features = ["termination"] } humantime = "2.0.1" log = "0.4.14" num-traits = "0.2" diff --git a/install/Cargo.toml b/install/Cargo.toml index aa770cedb..de3bc771c 100644 --- a/install/Cargo.toml +++ b/install/Cargo.toml @@ -17,7 +17,7 @@ chrono = { version = "0.4.11", features = ["serde"] } clap = { version = "2.33.1" } console = "0.15.0" crossbeam-channel = "0.5" -ctrlc = { version = "3.2.1", features = ["termination"] } +ctrlc = { version = "3.2.2", features = ["termination"] } dirs-next = "2.0.0" indicatif = "0.16.2" lazy_static = "1.4.0" diff --git a/tokens/Cargo.toml b/tokens/Cargo.toml index 13ea4fbed..d27a38823 100644 --- a/tokens/Cargo.toml +++ b/tokens/Cargo.toml @@ -14,7 +14,7 @@ chrono = { version = "0.4", features = ["serde"] } clap = "2.33.0" console = "0.15.0" csv = "1.1.6" -ctrlc = { version = "3.2.1", features = ["termination"] } +ctrlc = { version = "3.2.2", features = ["termination"] } indexmap = "1.8.1" indicatif = "0.16.2" pickledb = "0.4.1"