From e7d2947306b5b216ccb3027b6c7346f79ccb38c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Dec 2022 14:17:07 +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 a1bd3462..2fe3b5c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ secp256k1 = { version = "0.21", features = ["recovery"], optional = true } once_cell = { version = "1.8.0", optional = true } ## 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 }