diff --git a/Cargo.lock b/Cargo.lock index 46150c6082..aba4bcd95e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -655,6 +655,21 @@ dependencies = [ "winapi-util", ] +[[package]] +name = "console" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45" +dependencies = [ + "encode_unicode", + "lazy_static", + "libc", + "regex", + "terminal_size", + "unicode-width", + "winapi 0.3.8", +] + [[package]] name = "const_fn" version = "0.4.5" @@ -979,7 +994,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f4aa86af7b19b40ef9cbef761ed411a49f0afa06b7b6dcd3dfe2f96a3c546138" dependencies = [ - "console", + "console 0.11.3", "lazy_static", "tempfile", ] @@ -1924,7 +1939,7 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7baab56125e25686df467fe470785512329883aab42696d661247aca2a2896e4" dependencies = [ - "console", + "console 0.14.1", "lazy_static", "number_prefix", "regex", @@ -4161,7 +4176,7 @@ dependencies = [ "bs58", "chrono", "clap", - "console", + "console 0.14.1", "criterion-stats", "ctrlc", "dirs-next", @@ -4218,7 +4233,7 @@ dependencies = [ "Inflector", "base64 0.13.0", "chrono", - "console", + "console 0.14.1", "humantime 2.0.1", "indicatif", "serde", @@ -4415,7 +4430,7 @@ name = "solana-download-utils" version = "1.8.0" dependencies = [ "bzip2", - "console", + "console 0.14.1", "indicatif", "log 0.4.11", "reqwest", @@ -4615,7 +4630,7 @@ dependencies = [ "bzip2", "chrono", "clap", - "console", + "console 0.14.1", "ctrlc", "dirs-next", "indicatif", @@ -5061,7 +5076,7 @@ name = "solana-remote-wallet" version = "1.8.0" dependencies = [ "base32", - "console", + "console 0.14.1", "dialoguer", "hidapi", "log 0.4.11", @@ -5268,7 +5283,7 @@ name = "solana-stake-monitor" version = "1.8.0" dependencies = [ "clap", - "console", + "console 0.14.1", "log 0.4.11", "serde", "serde_yaml", @@ -5400,7 +5415,7 @@ dependencies = [ "bincode", "chrono", "clap", - "console", + "console 0.14.1", "csv", "ctrlc", "dirs-next", @@ -5466,7 +5481,7 @@ dependencies = [ "bincode", "chrono", "clap", - "console", + "console 0.14.1", "core_affinity", "fd-lock", "indicatif", @@ -5836,9 +5851,9 @@ dependencies = [ [[package]] name = "terminal_size" -version = "0.1.12" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8038f95fc7a6f351163f4b964af631bd26c9e828f7db085f2a84aca56f70d13b" +checksum = "86ca8ced750734db02076f44132d802af0b33b09942331f4459dde8636fd2406" dependencies = [ "libc", "winapi 0.3.8", diff --git a/cli-output/Cargo.toml b/cli-output/Cargo.toml index 3a0bec3a5e..d3dd216e9e 100644 --- a/cli-output/Cargo.toml +++ b/cli-output/Cargo.toml @@ -12,7 +12,7 @@ documentation = "https://docs.rs/solana-cli-output" [dependencies] base64 = "0.13.0" chrono = { version = "0.4.11", features = ["serde"] } -console = "0.11.3" +console = "0.14.1" humantime = "2.0.1" Inflector = "0.11.4" indicatif = "0.15.0" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 077332971a..821056b5be 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -16,7 +16,7 @@ chrono = { version = "0.4.11", features = ["serde"] } clap = "2.33.1" criterion-stats = "0.3.0" ctrlc = { version = "3.1.5", features = ["termination"] } -console = "0.11.3" +console = "0.14.1" dirs-next = "2.0.0" log = "0.4.11" Inflector = "0.11.4" diff --git a/download-utils/Cargo.toml b/download-utils/Cargo.toml index f766e15d6d..ee3f4baa61 100644 --- a/download-utils/Cargo.toml +++ b/download-utils/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] bzip2 = "0.3.3" -console = "0.11.3" +console = "0.14.1" indicatif = "0.15.0" log = "0.4.11" reqwest = { version = "0.11.2", default-features = false, features = ["blocking", "rustls-tls", "json"] } diff --git a/install/Cargo.toml b/install/Cargo.toml index c2cbe639dc..cac3651038 100644 --- a/install/Cargo.toml +++ b/install/Cargo.toml @@ -15,7 +15,7 @@ bincode = "1.3.1" bzip2 = "0.3.3" chrono = { version = "0.4.11", features = ["serde"] } clap = { version = "2.33.1" } -console = "0.11.3" +console = "0.14.1" ctrlc = { version = "3.1.5", features = ["termination"] } dirs-next = "2.0.0" indicatif = "0.15.0" diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index 2f5e1959f2..c7a175c593 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -458,6 +458,21 @@ dependencies = [ "winapi-util", ] +[[package]] +name = "console" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45" +dependencies = [ + "encode_unicode", + "lazy_static", + "libc", + "regex", + "terminal_size", + "unicode-width", + "winapi 0.3.8", +] + [[package]] name = "const_fn" version = "0.4.5" @@ -2282,21 +2297,20 @@ dependencies = [ [[package]] name = "regex" -version = "1.3.9" +version = "1.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6" +checksum = "2a26af418b574bd56588335b3a3659a65725d4e636eb1016c2f9e3b38c7cc759" dependencies = [ "aho-corasick", "memchr", "regex-syntax", - "thread_local", ] [[package]] name = "regex-syntax" -version = "0.6.18" +version = "0.6.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8" +checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remove_dir_all" @@ -3085,7 +3099,7 @@ dependencies = [ "Inflector", "base64 0.13.0", "chrono", - "console 0.11.3", + "console 0.14.1", "humantime", "indicatif", "serde", @@ -3412,7 +3426,7 @@ name = "solana-remote-wallet" version = "1.8.0" dependencies = [ "base32", - "console 0.11.3", + "console 0.14.1", "dialoguer", "hidapi", "log", @@ -3878,15 +3892,6 @@ dependencies = [ "syn 1.0.67", ] -[[package]] -name = "thread_local" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" -dependencies = [ - "lazy_static", -] - [[package]] name = "time" version = "0.1.43" diff --git a/remote-wallet/Cargo.toml b/remote-wallet/Cargo.toml index 345bab663f..d2edaf7411 100644 --- a/remote-wallet/Cargo.toml +++ b/remote-wallet/Cargo.toml @@ -11,7 +11,7 @@ documentation = "https://docs.rs/solana-remote-wallet" [dependencies] base32 = "0.4.0" -console = "0.11.3" +console = "0.14.1" dialoguer = "0.6.2" hidapi = { version = "1.2.5", default-features = false } log = "0.4.11" diff --git a/stake-monitor/Cargo.toml b/stake-monitor/Cargo.toml index 917f1eb665..f208275499 100644 --- a/stake-monitor/Cargo.toml +++ b/stake-monitor/Cargo.toml @@ -11,7 +11,7 @@ documentation = "https://docs.rs/solana-stake-monitor" [dependencies] clap = "2.33.1" -console = "0.11.3" +console = "0.14.1" log = "0.4.11" serde = "1.0.122" serde_yaml = "0.8.13" diff --git a/tokens/Cargo.toml b/tokens/Cargo.toml index 5dc6ea3deb..e08dc7ba45 100644 --- a/tokens/Cargo.toml +++ b/tokens/Cargo.toml @@ -12,7 +12,7 @@ documentation = "https://docs.rs/solana-tokens" [dependencies] chrono = { version = "0.4", features = ["serde"] } clap = "2.33.0" -console = "0.11.3" +console = "0.14.1" csv = "1.1.3" ctrlc = { version = "3.1.5", features = ["termination"] } dirs-next = "2.0.0" diff --git a/validator/Cargo.toml b/validator/Cargo.toml index 53f821c3fc..721c8d85fb 100644 --- a/validator/Cargo.toml +++ b/validator/Cargo.toml @@ -15,7 +15,7 @@ base64 = "0.12.3" bincode = "1.3.1" chrono = { version = "0.4.11", features = ["serde"] } clap = "2.33.1" -console = "0.11.3" +console = "0.14.1" core_affinity = "0.5.10" fd-lock = "2.0.0" indicatif = "0.15.0"