From 0f7a13b12bcd754c08e126534643b0a3dee68797 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 3 Jul 2024 00:16:52 +0000 Subject: [PATCH] Update Rust crate base64 to 0.22 --- Cargo.toml | 2 +- misc/test-client/Cargo.lock | 8 +------- misc/test-client/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3ed7367..bdefa98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ derive_more = "0.99" hex = "0.4" rand = "0.8" clap = { version = "4.5", features = ["derive"] } -base64 = "0.21" +base64 = "0.22" bincode = "1.3" serde = "1.0" serde_json = "1.0" diff --git a/misc/test-client/Cargo.lock b/misc/test-client/Cargo.lock index d53c86e..66aa6cd 100644 --- a/misc/test-client/Cargo.lock +++ b/misc/test-client/Cargo.lock @@ -123,12 +123,6 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" -[[package]] -name = "base64" -version = "0.21.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" - [[package]] name = "base64" version = "0.22.1" @@ -1483,7 +1477,7 @@ dependencies = [ name = "test-client" version = "0.1.0" dependencies = [ - "base64 0.21.7", + "base64 0.22.1", "clap", "csv", "futures", diff --git a/misc/test-client/Cargo.toml b/misc/test-client/Cargo.toml index 39a25b4..8f9bdab 100644 --- a/misc/test-client/Cargo.toml +++ b/misc/test-client/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] star-constellation = "0.2" -base64 = "0.21" +base64 = "0.22" rand = "0.8" clap = { version = "4.5", features = ["derive"] } reqwest = { version = "0.12", features = ["json"] }