diff --git a/packer/Cargo.lock b/packer/Cargo.lock index 9eaa9e63ad1..469e8648636 100644 --- a/packer/Cargo.lock +++ b/packer/Cargo.lock @@ -118,7 +118,9 @@ dependencies = [ "encode_unicode", "libc", "once_cell", + "regex", "terminal_size", + "unicode-width", "winapi", ] @@ -364,14 +366,14 @@ dependencies = [ [[package]] name = "indicatif" -version = "0.16.2" +version = "0.17.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b" +checksum = "cef509aa9bc73864d6756f0d34d35504af3cf0844373afe9b8669a5b8005a729" dependencies = [ "console", - "lazy_static", "number_prefix", - "regex", + "portable-atomic", + "unicode-width", ] [[package]] @@ -467,6 +469,12 @@ version = "0.3.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" +[[package]] +name = "portable-atomic" +version = "0.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26f6a7b87c2e435a3241addceeeff740ff8b7e76b74c13bf9acb17fa454ea00b" + [[package]] name = "proc-macro-error" version = "1.0.4" @@ -798,6 +806,12 @@ version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" +[[package]] +name = "unicode-width" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" + [[package]] name = "unicode-xid" version = "0.2.2" diff --git a/packer/Cargo.toml b/packer/Cargo.toml index f0639187cc9..d00295959ac 100644 --- a/packer/Cargo.toml +++ b/packer/Cargo.toml @@ -20,7 +20,7 @@ sha2 = "0.10.2" data-encoding = "^2" serde_json = "^1" rayon = "^1.5" -indicatif = "^0.16" +indicatif = "^0.17" xz2 = "0.1.6" ignore = "0.4.18"