diff --git a/Cargo.lock b/Cargo.lock index 29992a3..e9f482a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -49,6 +49,12 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" +[[package]] +name = "base64" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" + [[package]] name = "bb8" version = "0.8.0" @@ -664,7 +670,7 @@ version = "0.6.0-alpha1" dependencies = [ "arc-swap", "async-trait", - "base64", + "base64 0.20.0", "bb8", "bytes", "chrono", @@ -874,7 +880,7 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55" dependencies = [ - "base64", + "base64 0.13.1", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index ca97c28..d29f4c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ env_logger = "0.10" parking_lot = "0.12.1" hmac = "0.12" sha2 = "0.10" -base64 = "0.13" +base64 = "0.20" stringprep = "0.1" tokio-rustls = "0.23" rustls-pemfile = "1"