From cb16e16c2ea45e0a877eb94c3eeef4459b01e0f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2026 19:23:52 +0000 Subject: [PATCH] chore(deps): bump base64 from 0.22.1 to 0.23.0 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] --- Cargo.lock | 10 ++++++++-- examples/sync-pull-dataplane/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1df25ac..9e1c557 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -244,6 +244,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" @@ -3300,7 +3306,7 @@ dependencies = [ "async-trait", "axum", "axum-extra", - "base64 0.22.1", + "base64 0.23.0", "bon", "chrono", "config", @@ -4165,7 +4171,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.61.2", ] [[package]] diff --git a/examples/sync-pull-dataplane/Cargo.toml b/examples/sync-pull-dataplane/Cargo.toml index e877adb..852e0bb 100644 --- a/examples/sync-pull-dataplane/Cargo.toml +++ b/examples/sync-pull-dataplane/Cargo.toml @@ -25,6 +25,6 @@ thiserror.workspace=true reqwest.workspace=true serde_json.workspace=true async-trait.workspace=true -base64 = "0.22.1" +base64 = "0.23.0" config = "0.15.21" tower-http = { version = "0.7.0", features = ["trace"]}