From ba1f8f3355c8d80ecb200e3f2ad0d0654727b5ad Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2026 19:00:28 +0000 Subject: [PATCH] fix(deps): update rust crate base64 to ~0.23.0 --- Cargo.lock | 16 +++++++++++----- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 37de3d9..15ea4de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -29,6 +29,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 = "base64-serde" version = "0.8.0" @@ -169,7 +175,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad19858c4c462309a8f3a20abec53e8603bda1eefda26c8bfab51d5516b40cbb" dependencies = [ "anyhow", - "base64", + "base64 0.22.1", "bytemuck", "extism-convert-macros", "prost", @@ -197,7 +203,7 @@ version = "1.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2f59c8dadb5e0bde9a48c6ed45312e6ef625cbcd5f67c28459dbc8fe8bc0383" dependencies = [ - "base64", + "base64 0.22.1", "serde", "serde_json", ] @@ -209,7 +215,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "352fcb5a66eb74145a1c4a01f2bd15d59c62c85be73aac8471880c65b26b798f" dependencies = [ "anyhow", - "base64", + "base64 0.22.1", "extism-convert", "extism-manifest", "extism-pdk-derive", @@ -599,7 +605,7 @@ version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51e219e79014df21a225b1860a479e2dcd7cbd9130f4defd4bd0e191ea31d67d" dependencies = [ - "base64", + "base64 0.22.1", "chrono", "getrandom", "http", @@ -641,7 +647,7 @@ name = "plugin" version = "0.2.0" dependencies = [ "anyhow", - "base64", + "base64 0.23.1", "base64-serde", "chrono", "extism-pdk", diff --git a/Cargo.toml b/Cargo.toml index 73adf15..a62bac9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["cdylib"] [dependencies] anyhow = "~1.0" -base64 = "~0.22" +base64 = "~0.23.0" base64-serde = "~0.8" chrono = { version = "~0.4", features = ["serde"] } extism-pdk = "~1.4"