diff --git a/Cargo.lock b/Cargo.lock index 05dab7f3d6..3175f4586c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -490,18 +490,6 @@ dependencies = [ "cc", ] -[[package]] -name = "clicolors-control" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90082ee5dcdd64dc4e9e0d37fbf3ee325419e39c0092191e0393df65518f741e" -dependencies = [ - "atty", - "lazy_static", - "libc", - "winapi 0.3.8", -] - [[package]] name = "cloudabi" version = "0.0.3" @@ -541,23 +529,6 @@ dependencies = [ "byteorder", ] -[[package]] -name = "console" -version = "0.10.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2586208b33573b7f76ccfbe5adb076394c88deaf81b84d7213969805b0a952a7" -dependencies = [ - "clicolors-control", - "encode_unicode", - "lazy_static", - "libc", - "regex", - "terminal_size", - "termios", - "unicode-width", - "winapi 0.3.8", -] - [[package]] name = "console" version = "0.11.3" @@ -808,7 +779,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f4aa86af7b19b40ef9cbef761ed411a49f0afa06b7b6dcd3dfe2f96a3c546138" dependencies = [ - "console 0.11.3", + "console", "lazy_static", "tempfile", ] @@ -1634,7 +1605,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49a68371cf417889c9d7f98235b7102ea7c54fc59bcbd22f3dea785be9d27e40" dependencies = [ - "console 0.11.3", + "console", "lazy_static", "number_prefix", "regex", @@ -3844,7 +3815,7 @@ dependencies = [ "bs58 0.3.1", "chrono", "clap", - "console 0.10.3", + "console", "criterion-stats", "ctrlc", "dirs 2.0.2", @@ -4046,7 +4017,7 @@ name = "solana-download-utils" version = "1.3.0" dependencies = [ "bzip2", - "console 0.10.3", + "console", "indicatif", "log 0.4.8", "reqwest", @@ -4157,7 +4128,7 @@ dependencies = [ "bzip2", "chrono", "clap", - "console 0.10.3", + "console", "ctrlc", "dirs 2.0.2", "indicatif", @@ -4515,7 +4486,7 @@ name = "solana-remote-wallet" version = "1.3.0" dependencies = [ "base32", - "console 0.10.3", + "console", "dialoguer", "hidapi", "log 0.4.8", @@ -4635,7 +4606,7 @@ name = "solana-stake-monitor" version = "1.3.0" dependencies = [ "clap", - "console 0.10.3", + "console", "log 0.4.8", "serde", "serde_yaml", @@ -4728,7 +4699,7 @@ version = "1.3.0" dependencies = [ "chrono", "clap", - "console 0.10.3", + "console", "csv", "dirs 2.0.2", "indexmap", @@ -4773,7 +4744,7 @@ version = "1.3.0" dependencies = [ "chrono", "clap", - "console 0.10.3", + "console", "libc", "log 0.4.8", "rand 0.7.3", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ea075ce386..c00597e95d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -15,7 +15,7 @@ chrono = { version = "0.4.11", features = ["serde"] } clap = "2.33.1" criterion-stats = "0.3.0" ctrlc = { version = "3.1.4", features = ["termination"] } -console = "0.10.1" +console = "0.11.3" dirs = "2.0.2" log = "0.4.8" Inflector = "0.11.4" diff --git a/download-utils/Cargo.toml b/download-utils/Cargo.toml index 9d92391622..28c575b851 100644 --- a/download-utils/Cargo.toml +++ b/download-utils/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" [dependencies] bzip2 = "0.3.3" -console = "0.10.1" +console = "0.11.3" indicatif = "0.14.0" log = "0.4.8" reqwest = { version = "0.10.4", default-features = false, features = ["blocking", "rustls-tls", "json"] } diff --git a/install/Cargo.toml b/install/Cargo.toml index 7003353cee..39614a825e 100644 --- a/install/Cargo.toml +++ b/install/Cargo.toml @@ -14,7 +14,7 @@ bincode = "1.2.1" bzip2 = "0.3.3" chrono = { version = "0.4.11", features = ["serde"] } clap = { version = "2.33.1" } -console = "0.10.1" +console = "0.11.3" ctrlc = { version = "3.1.4", features = ["termination"] } dirs = "2.0.2" indicatif = "0.14.0" diff --git a/remote-wallet/Cargo.toml b/remote-wallet/Cargo.toml index 92209db097..39407fe248 100644 --- a/remote-wallet/Cargo.toml +++ b/remote-wallet/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://solana.com/" [dependencies] base32 = "0.4.0" -console = "0.10.1" +console = "0.11.3" dialoguer = "0.6.2" hidapi = { version = "1.2.2", default-features = false } log = "0.4.8" diff --git a/stake-monitor/Cargo.toml b/stake-monitor/Cargo.toml index 2f30593540..5cac181d2b 100644 --- a/stake-monitor/Cargo.toml +++ b/stake-monitor/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://solana.com/" [dependencies] clap = "2.33.1" -console = "0.10.1" +console = "0.11.3" log = "0.4.8" serde = "1.0.110" serde_yaml = "0.8.12" diff --git a/tokens/Cargo.toml b/tokens/Cargo.toml index 8ffb7ae147..383b3ba8d5 100644 --- a/tokens/Cargo.toml +++ b/tokens/Cargo.toml @@ -11,7 +11,7 @@ homepage = "https://solana.com/" [dependencies] chrono = { version = "0.4", features = ["serde"] } clap = "2.33.0" -console = "0.10.3" +console = "0.11.3" csv = "1.1.3" dirs = "2.0.2" indexmap = "1.3.2" diff --git a/validator/Cargo.toml b/validator/Cargo.toml index b14fc4ae1c..6a90330c01 100644 --- a/validator/Cargo.toml +++ b/validator/Cargo.toml @@ -11,7 +11,7 @@ homepage = "https://solana.com/" [dependencies] clap = "2.33.1" chrono = { version = "0.4.11", features = ["serde"] } -console = "0.10.1" +console = "0.11.3" log = "0.4.8" rand = "0.7.0" serde_json = "1.0.53"