From 4c4ccbc6ff1afef65fdc5fd526677a3eb70f04dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 16:21:53 +0100 Subject: [PATCH] Update base64 requirement from 0.21 to 0.22 (#646) 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> --- examples/websocket/Cargo.toml | 2 +- gotham/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/websocket/Cargo.toml b/examples/websocket/Cargo.toml index 79790592..9ab7e5e7 100644 --- a/examples/websocket/Cargo.toml +++ b/examples/websocket/Cargo.toml @@ -13,4 +13,4 @@ tokio-tungstenite = "0.21" tokio = "1.11.0" pretty_env_logger = "0.5" sha1 = "0.10" -base64 = "0.21" +base64 = "0.22" diff --git a/gotham/Cargo.toml b/gotham/Cargo.toml index bfdf3a3b..4d146890 100644 --- a/gotham/Cargo.toml +++ b/gotham/Cargo.toml @@ -30,7 +30,7 @@ borrow-bag = { path = "../misc/borrow_bag", version = "1.1.1" } gotham_derive = { path = "../gotham_derive", version = "0.7.1", optional = true } anyhow = "1.0.5" -base64 = "0.21" +base64 = "0.22" bincode = { version = "1.0", optional = true } bytes = "1.0" cookie = "0.15"