From 947e43db6ef4cacf0c627bdc3b28500209b5bf91 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 13:18:47 -0600 Subject: [PATCH] Update base64 requirement from 0.21 to 0.22 (#22) Updates the requirements on [base64](https://github.com/marshallpierce/rust-base64) to permit the latest version. - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.21.0...v0.22.0) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- client/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index fc04886..dd91580 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -13,7 +13,7 @@ keywords.workspace = true [dependencies] async-stream = "0.3" async-trait = "0.1" -base64 = { version = "0.21", optional = true } +base64 = { version = "0.22", optional = true } futures = "0.3" http = { version = "0.2", optional = true } js-sys = { version = "0.3", optional = true }