From e865ef34d742538b68a7b6729acdcf9de7aa7b6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 26 Mar 2023 21:31:51 +0000 Subject: [PATCH] Bump base64 from 0.13.0 to 0.21.0 in /src/agent Bumps [base64](https://github.com/marshallpierce/rust-base64) from 0.13.0 to 0.21.0. - [Release notes](https://github.com/marshallpierce/rust-base64/releases) - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.13.0...v0.21.0) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/agent/Cargo.lock | 12 ++++++------ src/agent/onefuzz/Cargo.toml | 2 +- src/agent/storage-queue/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/agent/Cargo.lock b/src/agent/Cargo.lock index 1c52c7c334a..ab545ce0222 100644 --- a/src/agent/Cargo.lock +++ b/src/agent/Cargo.lock @@ -221,9 +221,9 @@ dependencies = [ [[package]] name = "base64" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "base64" @@ -1246,7 +1246,7 @@ checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad" dependencies = [ "anyhow", "async-channel", - "base64 0.13.0", + "base64 0.13.1", "futures-lite", "http", "infer", @@ -1927,7 +1927,7 @@ dependencies = [ "anyhow", "async-trait", "backoff", - "base64 0.13.0", + "base64 0.21.0", "bytes", "clap", "cpp_demangle", @@ -2630,7 +2630,7 @@ version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87f242f1488a539a79bac6dbe7c8609ae43b7914b7736210f239a37cccb32525" dependencies = [ - "base64 0.13.0", + "base64 0.13.1", "bytes", "encoding_rs", "futures-core", @@ -3038,7 +3038,7 @@ dependencies = [ "anyhow", "async-trait", "backoff", - "base64 0.13.0", + "base64 0.21.0", "bincode", "bytes", "derivative", diff --git a/src/agent/onefuzz/Cargo.toml b/src/agent/onefuzz/Cargo.toml index c51f8f277ed..5c9e846da8d 100644 --- a/src/agent/onefuzz/Cargo.toml +++ b/src/agent/onefuzz/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" [dependencies] anyhow = "1.0" async-trait = "0.1" -base64 = "0.13" +base64 = "0.21" bytes = "1.2" dunce = "1.0" dynamic-library = { path = "../dynamic-library" } diff --git a/src/agent/storage-queue/Cargo.toml b/src/agent/storage-queue/Cargo.toml index 35ea4f5eb67..cf7b6fb7e34 100644 --- a/src/agent/storage-queue/Cargo.toml +++ b/src/agent/storage-queue/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" anyhow = "1.0" async-trait = "0.1" backoff = { version = "0.4", features = ["tokio"] } -base64 = "0.13" +base64 = "0.21" bytes = { version = "1.2", features = ["serde"] } derivative = "2.2" flume = "0.10"