From e4f5e4b967f4f763c048fddaceca3ae2d7484f8f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 26 Jul 2026 17:30:17 +0000 Subject: [PATCH] chore(deps): update rust crate base64 to 0.23 --- Cargo.lock | 8 +++++++- plugins/updater/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b73674a00..f26c8161c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -596,6 +596,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.6.0" @@ -6854,7 +6860,7 @@ dependencies = [ name = "tauri-plugin-updater" version = "2.10.1" dependencies = [ - "base64 0.22.1", + "base64 0.23.0", "dirs 6.0.0", "flate2", "futures-util", diff --git a/plugins/updater/Cargo.toml b/plugins/updater/Cargo.toml index 332482508..58e2c9e93 100644 --- a/plugins/updater/Cargo.toml +++ b/plugins/updater/Cargo.toml @@ -41,7 +41,7 @@ url = { workspace = true } http = "1" minisign-verify = "0.2" time = { version = "0.3", features = ["parsing", "formatting"] } -base64 = "0.22" +base64 = "0.23" semver = { version = "1", features = ["serde"] } futures-util = "0.3" tempfile = "3.20"