diff --git a/Cargo.lock b/Cargo.lock index d960190e..e344bbe5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "anyhow" version = "1.0.43" @@ -92,6 +94,20 @@ dependencies = [ "winapi", ] +[[package]] +name = "console" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c" +dependencies = [ + "encode_unicode", + "lazy_static", + "libc", + "terminal_size", + "unicode-width", + "winapi", +] + [[package]] name = "crossbeam-channel" version = "0.5.1" @@ -238,14 +254,14 @@ dependencies = [ [[package]] name = "indicatif" -version = "0.15.0" +version = "0.17.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7baab56125e25686df467fe470785512329883aab42696d661247aca2a2896e4" +checksum = "4295cbb7573c16d310e99e713cf9e75101eb190ab31fccd35f2d2691b4352b19" dependencies = [ - "console", - "lazy_static", + "console 0.15.2", "number_prefix", - "regex", + "portable-atomic", + "unicode-width", ] [[package]] @@ -279,7 +295,7 @@ dependencies = [ "anyhow", "base64", "clap", - "console", + "console 0.14.1", "crossbeam-channel", "getset", "hostname", @@ -377,9 +393,9 @@ dependencies = [ [[package]] name = "number_prefix" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a" +checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "os_str_bytes" @@ -421,6 +437,12 @@ dependencies = [ "err-derive", ] +[[package]] +name = "portable-atomic" +version = "0.3.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15eb2c6e362923af47e13c23ca5afb859e83d54452c55b0b9ac763b8f7c1ac16" + [[package]] name = "ppv-lite86" version = "0.2.10" diff --git a/Cargo.toml b/Cargo.toml index 681e6340..d0e8868a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ console = "0.14.1" crossbeam-channel = "0.5.1" getset = "0.1.1" hostname = "0.3.1" -indicatif = "0.15.0" +indicatif = "0.17.2" ipnetwork = "0.18.0" lazy_static = "1.4.0" log = { version = "0.4.14", features = ["serde", "std"] }