diff --git a/Cargo.lock b/Cargo.lock index 5c48678a..aa8a5295 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -80,12 +80,6 @@ dependencies = [ "rustc-demangle", ] -[[package]] -name = "base64" -version = "0.21.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" - [[package]] name = "base64" version = "0.22.1" @@ -253,7 +247,7 @@ name = "coreos-installer" version = "0.22.0" dependencies = [ "anyhow", - "base64 0.21.7", + "base64", "bincode", "byte-unit", "bytes", @@ -1176,7 +1170,7 @@ version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" dependencies = [ - "base64 0.22.1", + "base64", "bytes", "encoding_rs", "futures-channel", @@ -1273,7 +1267,7 @@ version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" dependencies = [ - "base64 0.22.1", + "base64", "rustls-pki-types", ] @@ -1415,7 +1409,7 @@ version = "3.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857" dependencies = [ - "base64 0.22.1", + "base64", "chrono", "hex", "indexmap 1.9.3", diff --git a/Cargo.toml b/Cargo.toml index fe93e11b..5fdd1d16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ debug = true [dependencies] anyhow = ">= 1.0.38, < 2" -base64 = ">= 0.21, < 0.22" +base64 = ">= 0.21, < 0.23" bincode = "^1.3" bytes = ">= 1.0.1, < 2" byte-unit = ">= 3.1.0, < 5.0.0"