From d60121fad7950ef7f02661c2d6a4035db74f64f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Aug 2026 02:48:58 +0000 Subject: [PATCH] build(deps): bump base64 from 0.22.1 to 0.23.1 Bumps [base64](https://github.com/marshallpierce/rust-base64) from 0.22.1 to 0.23.1. - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.22.1...v0.23.1) --- updated-dependencies: - dependency-name: base64 dependency-version: 0.23.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 ++++++++-- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index edf95aa..383cdf5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -714,6 +714,12 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" +[[package]] +name = "base64" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5" + [[package]] name = "base64-simd" version = "0.8.0" @@ -1514,7 +1520,7 @@ version = "1.0.0-rc.1" dependencies = [ "aes-gcm", "argon2", - "base64 0.22.1", + "base64 0.23.1", "fcp-fabric-domain", "hmac 0.12.1", "rand_core 0.6.4", @@ -1548,7 +1554,7 @@ dependencies = [ "aws-config", "aws-sdk-kms", "axum", - "base64 0.22.1", + "base64 0.23.1", "ed25519-dalek", "fcp-fabric-auth", "fcp-fabric-domain", diff --git a/Cargo.toml b/Cargo.toml index 1770c06..fd46b08 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ aes-gcm = { version = "0.10.3", features = ["aes", "zeroize"] } argon2 = { version = "0.5.3", features = ["std"] } async-trait = "0.1" axum = { version = "0.8.6", features = ["json", "macros"] } -base64 = "0.22" +base64 = "0.23" bytes = "1.10" clap = { version = "4.5.53", features = ["derive", "env"] } hmac = "0.12.1"