diff --git a/Cargo.lock b/Cargo.lock index 1ab0f6d..08f8feb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -110,9 +110,15 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "base64" -version = "0.13.0" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "base64" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" +checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" [[package]] name = "base64ct" @@ -1270,7 +1276,7 @@ version = "0.11.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92" dependencies = [ - "base64", + "base64 0.13.1", "bytes", "encoding_rs", "futures-core", @@ -1433,7 +1439,7 @@ dependencies = [ "aes", "anyhow", "atty", - "base64", + "base64 0.22.0", "cbc", "compression", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 3c3a586..3458feb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ structopt = "0.3" anyhow = "1.0.80" thiserror = "1.0.57" atty = "0.2" -base64 = "0.13.0" +base64 = "0.22.0" aes = "0.8.1" cbc = {version = "0.1.2", features = ["std"]} pbkdf2 = "0.11.0"