From c97afe34c99c35802fde04e124681d0654ab9c41 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 20:35:13 +0000 Subject: [PATCH] deps(rust): bump base64 from 0.22.1 to 0.23.0 in /wgbridge-rs 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] --- wgbridge-rs/Cargo.lock | 10 ++++++++-- wgbridge-rs/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/wgbridge-rs/Cargo.lock b/wgbridge-rs/Cargo.lock index 83453b02..7e55f80a 100644 --- a/wgbridge-rs/Cargo.lock +++ b/wgbridge-rs/Cargo.lock @@ -50,6 +50,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 = "bitfield-struct" version = "0.12.1" @@ -404,7 +410,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87942cf21be131088380c8b3cb3dc9a8528a7f840a8230bed0e79b2e202d0629" dependencies = [ "aead", - "base64", + "base64 0.22.1", "bitfield-struct", "blake2", "bytes", @@ -1100,7 +1106,7 @@ name = "wgbridge" version = "0.1.0" dependencies = [ "android_logger", - "base64", + "base64 0.23.0", "getrandom 0.4.3", "gotatun", "hex", diff --git a/wgbridge-rs/Cargo.toml b/wgbridge-rs/Cargo.toml index 1cbe271b..aef388f4 100644 --- a/wgbridge-rs/Cargo.toml +++ b/wgbridge-rs/Cargo.toml @@ -11,7 +11,7 @@ crate-type = ["cdylib", "lib"] [dependencies] gotatun = { version = "=0.8.1", default-features = false, features = ["ring", "device"] } tokio = { version = "1.43", features = ["rt-multi-thread", "net", "sync", "time", "macros"] } -base64 = "0.22" +base64 = "0.23" hex = "0.4" ipnetwork = "0.21" getrandom = "0.4"