From 6fe057ae9be6c5db41d168e5e739c966ef960e1e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 14:10:41 +0000 Subject: [PATCH] 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 | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f5cb536..d156827 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1292,7 +1292,7 @@ name = "tinyhosts" version = "0.1.5" dependencies = [ "async-trait", - "base64 0.22.1", + "base64 0.23.1", "hex", "percent-encoding", "reqwest", diff --git a/Cargo.toml b/Cargo.toml index 4d19af0..85c2f2b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,7 +47,7 @@ serde = { version = "1", features = ["derive"] } serde_json = "1" # Bundle file contents travel as base64 in JSON: a byte array would triple the # size of every deployment payload crossing the bus. -base64 = "0.22" +base64 = "0.23" # Provider HTTP clients. rustls keeps the build free of a system OpenSSL, and # `json` covers every request body except the raw file upload. reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"], optional = true }