From 3a278defa977c1e87c7ae6c9df69cbf03a9d0086 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 06:07:36 +0000 Subject: [PATCH] chore(deps): update base64 requirement in /rustchain-wallet 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.22.0...v0.23.0) --- updated-dependencies: - dependency-name: base64 dependency-version: 0.23.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rustchain-wallet/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustchain-wallet/Cargo.toml b/rustchain-wallet/Cargo.toml index 6198fb284..f37f75346 100644 --- a/rustchain-wallet/Cargo.toml +++ b/rustchain-wallet/Cargo.toml @@ -24,7 +24,7 @@ aes-gcm = "0.10" # Serialization serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -base64 = "0.22" +base64 = "0.23" # CLI clap = { version = "4.4", features = ["derive", "env"] }