From b6f0d43866ac62c7498ceebc2e80f3ec197b5627 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 13:15:04 +0000 Subject: [PATCH] chore(deps): bump base64 from 0.22.1 to 0.23.0 in /backend Bumps [base64](https://github.com/marshallpierce/rust-base64) from 0.22.1 to 0.23.0. - [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.0) --- updated-dependencies: - dependency-name: base64 dependency-version: 0.23.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- backend/Cargo.lock | 28 +++++++++++++++++----------- backend/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 1d5638549..b8e21f50e 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -150,7 +150,7 @@ dependencies = [ "async-trait", "axum-core", "axum-macros", - "base64", + "base64 0.22.1", "bytes", "futures-util", "http 1.4.0", @@ -270,6 +270,12 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" +[[package]] +name = "base64" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b25655df2c3cdd83c5e5b293b88acd880332b2ddadd7c30ac43144fdc0033da9" + [[package]] name = "base64ct" version = "1.8.3" @@ -407,7 +413,7 @@ version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" dependencies = [ - "base64", + "base64 0.22.1", "hmac", "percent-encoding", "rand 0.8.6", @@ -1056,7 +1062,7 @@ version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "futures-channel", "futures-util", @@ -1267,7 +1273,7 @@ version = "9.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde" dependencies = [ - "base64", + "base64 0.22.1", "js-sys", "pem", "ring", @@ -1574,7 +1580,7 @@ version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" dependencies = [ - "base64", + "base64 0.22.1", "serde_core", ] @@ -1901,7 +1907,7 @@ dependencies = [ "axum", "axum-extra", "axum-test", - "base64", + "base64 0.23.0", "chrono", "dotenvy", "hex", @@ -1965,7 +1971,7 @@ version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "futures-core", "futures-util", @@ -2243,7 +2249,7 @@ checksum = "9bde37f42765dfdc34e2a039e0c84afbf79a3101c1941763b0beb816c2f17541" dependencies = [ "arrayvec", "async-trait", - "base64", + "base64 0.22.1", "bitflags", "bytes", "flate2", @@ -2410,7 +2416,7 @@ version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "chrono", "crc", @@ -2485,7 +2491,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526" dependencies = [ "atoi", - "base64", + "base64 0.22.1", "bitflags", "byteorder", "bytes", @@ -2529,7 +2535,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46" dependencies = [ "atoi", - "base64", + "base64 0.22.1", "bitflags", "byteorder", "chrono", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 7d17e91ac..83a1a9f32 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -41,7 +41,7 @@ jsonwebtoken = "9" # Removing it drops the entire legacy reqwest-0.11 / rustls-0.21 / webpki-0.101 # chain, clearing RUSTSEC-2026-0098, RUSTSEC-2026-0099 and RUSTSEC-2025-0134. reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false } -base64 = "0.22" +base64 = "0.23" rand = "0.8" sha2 = "0.10"