From 6ab91ed4e02e23ccf0b21d0fbe62c8a00f80a1c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 15:07:41 +0000 Subject: [PATCH] chore(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.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++++++++---- Cargo.toml | 2 +- crates/processing/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 376c1dd4..c9193f4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -435,6 +435,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 = "base64ct" version = "1.8.3" @@ -3408,7 +3414,7 @@ dependencies = [ name = "medical-export" version = "0.1.0" dependencies = [ - "base64 0.22.1", + "base64 0.23.1", "chrono", "docx-rs", "medical-core", @@ -3425,7 +3431,7 @@ name = "medical-processing" version = "0.1.0" dependencies = [ "async-trait", - "base64 0.22.1", + "base64 0.23.1", "calamine", "chrono", "flate2", @@ -3472,7 +3478,7 @@ name = "medical-security" version = "0.1.0" dependencies = [ "aes-gcm", - "base64 0.22.1", + "base64 0.23.1", "chrono", "dirs", "hex", @@ -3499,7 +3505,7 @@ version = "0.1.0" dependencies = [ "async-trait", "axum", - "base64 0.22.1", + "base64 0.23.1", "chrono", "dirs", "flate2", diff --git a/Cargo.toml b/Cargo.toml index 3432c977..023c264f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ bytemuck = { version = "1", features = ["derive"] } # is the only real version dedup — the rest already match across crates. rand = "0.9" hex = "0.4" -base64 = "0.22" +base64 = "0.23" sha2 = "0.10" regex = "1" hound = "3.5" diff --git a/crates/processing/Cargo.toml b/crates/processing/Cargo.toml index a1dd1bce..2a5516ae 100644 --- a/crates/processing/Cargo.toml +++ b/crates/processing/Cargo.toml @@ -16,7 +16,7 @@ chrono = { workspace = true } async-trait = { workspace = true } regex = { workspace = true } pdf-extract = "0.7" -base64 = "0.22" +base64 = "0.23" zip = "2.4" quick-xml = "0.36" calamine = "0.26"