diff --git a/Cargo.lock b/Cargo.lock index d960190e..23436f22 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" @@ -79,14 +81,13 @@ dependencies = [ [[package]] name = "console" -version = "0.14.1" +version = "0.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45" +checksum = "89eab4d20ce20cea182308bca13088fecea9c05f6776cf287205d41a0ed3c847" dependencies = [ "encode_unicode", - "lazy_static", "libc", - "regex", + "once_cell", "terminal_size", "unicode-width", "winapi", @@ -381,6 +382,12 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a" +[[package]] +name = "once_cell" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" + [[package]] name = "os_str_bytes" version = "3.1.0" diff --git a/Cargo.toml b/Cargo.toml index 681e6340..72916749 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ path = "src/main.rs" anyhow = "1.0.43" base64 = "0.13.0" clap = { git = "https://github.com/clap-rs/clap", features = ["wrap_help"] } -console = "0.14.1" +console = "0.15.1" crossbeam-channel = "0.5.1" getset = "0.1.1" hostname = "0.3.1"