From 08cbb94838206ffda62241a52626292cfa052dd9 Mon Sep 17 00:00:00 2001 From: "oxide-renovate[bot]" <146848827+oxide-renovate[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 04:07:28 +0000 Subject: [PATCH] Update Rust crate base64 to 0.23 --- Cargo.lock | 14 ++++++++++---- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9d36f51..c8ba1a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -148,6 +148,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" @@ -1471,7 +1477,7 @@ version = "10.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eba32bfb4ffdeaca3e34431072faf01745c9b26d25504aa7a6cf5684334fc4fc" dependencies = [ - "base64", + "base64 0.22.1", "ed25519-dalek", "getrandom 0.2.17", "hmac", @@ -1841,7 +1847,7 @@ checksum = "46a4184473c1d00a892dad5259e1d19421ab1f8e4b7d714113a6cfdb213d9980" dependencies = [ "arc-swap", "async-trait", - "base64", + "base64 0.22.1", "bytes", "cargo_metadata", "cfg-if", @@ -2055,7 +2061,7 @@ version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" dependencies = [ - "base64", + "base64 0.22.1", "serde_core", ] @@ -2663,7 +2669,7 @@ name = "scadm" version = "0.1.0" dependencies = [ "anstyle", - "base64", + "base64 0.23.0", "clap 4.6.1", "errno", "libc", diff --git a/Cargo.toml b/Cargo.toml index cb9c9b2..7820523 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ p4-macro = { git = "https://github.com/oxidecomputer/p4", branch = "main" } p4-test = { package = "tests", git = "https://github.com/oxidecomputer/p4", branch = "main" } usdt = { git = "https://github.com/oxidecomputer/usdt" } -base64 = { version = "0.22" } +base64 = { version = "0.23" } clap = { version = "4.6.1", features = ["derive", "unstable-styles"] } anstyle = "1.0.14" libc = "0.2"