From 7a58ac1417ab6757a6c4dd9a9d2f6398c6c0e122 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Dec 2022 18:05:14 +0000 Subject: [PATCH] Update base64 requirement from 0.13 to 0.20 Updates the requirements on [base64](https://github.com/marshallpierce/rust-base64) to permit the latest version. - [Release notes](https://github.com/marshallpierce/rust-base64/releases) - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.13.0...v0.20.0) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 10f7152be..1bc0a8cd3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ tiny-keccak = { version = "2.0.1", features = ["keccak"] } pin-project = "1.0" # Optional deps ## HTTP -base64 = { version = "0.13", optional = true } +base64 = { version = "0.20", optional = true } bytes = { version = "1.0", optional = true } reqwest = { version = "0.11", optional = true, default-features = false, features = ["json"] } headers = { version = "0.3", optional = true }