diff --git a/Cargo.lock b/Cargo.lock index 1a3aa1c5..2e5124c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -82,13 +82,19 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" +[[package]] +name = "base64" +version = "0.21.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" + [[package]] name = "base64-stream" -version = "1.2.7" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4896f7f4cd81cc2610cf11f682cd562e9e4e24ddc597a9b5d1bf1c5e6bb3ddfb" +checksum = "e511d9a29ec5ed9f62f65c0d205d0362fae2bad2f6b9ce41888ea78a96bfc736" dependencies = [ - "base64", + "base64 0.21.2", "educe", "generic-array", ] @@ -1143,7 +1149,7 @@ version = "0.11.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92" dependencies = [ - "base64", + "base64 0.13.0", "bytes", "encoding_rs", "futures-core", @@ -1244,7 +1250,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9" dependencies = [ - "base64", + "base64 0.13.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 5a39c603..72a1c06c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ exclude = [ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -base64-stream = "1.2.7" +base64-stream = "2.0.0" bytes = "1.1.0" cargo_metadata = "0.15.2" chrono = { version = "0.4.23", default-features = false, features = ["alloc", "std", "serde"] }