From 8e6eeba27894063b05cb85b68347ecb6d1cde59e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 03:50:31 +0000 Subject: [PATCH] chore(deps): bump base64 from 0.21.7 to 0.22.0 Bumps [base64](https://github.com/marshallpierce/rust-base64) from 0.21.7 to 0.22.0. - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.21.7...v0.22.0) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 +++++++++++----- Cargo.toml | 2 +- crates/shadowsocks/Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 11904980129d..360a385b5332 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,6 +207,12 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" + [[package]] name = "base64ct" version = "1.6.0" @@ -2283,7 +2289,7 @@ version = "0.11.24" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251" dependencies = [ - "base64", + "base64 0.21.7", "bytes", "encoding_rs", "futures-core", @@ -2504,7 +2510,7 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ - "base64", + "base64 0.21.7", ] [[package]] @@ -2513,7 +2519,7 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c333bb734fcdedcea57de1602543590f545f127dc8b533324318fd492c5c70b" dependencies = [ - "base64", + "base64 0.21.7", "rustls-pki-types", ] @@ -2725,7 +2731,7 @@ dependencies = [ "aes", "arc-swap", "async-trait", - "base64", + "base64 0.22.0", "blake3", "bloomfilter", "byte_string", @@ -2788,7 +2794,7 @@ dependencies = [ name = "shadowsocks-rust" version = "1.18.2" dependencies = [ - "base64", + "base64 0.22.0", "build-time", "byte_string", "byteorder", diff --git a/Cargo.toml b/Cargo.toml index 66daa358d511..16b1a954d2a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -177,7 +177,7 @@ time = { version = "0.3", optional = true } serde = { version = "1.0", features = ["derive"] } json5 = "0.4" thiserror = "1.0" -base64 = "0.21" +base64 = "0.22" clap = { version = "~4.4", features = ["wrap_help", "suggestions"] } cfg-if = "1" diff --git a/crates/shadowsocks/Cargo.toml b/crates/shadowsocks/Cargo.toml index 7f7a9e5c23c9..e29af77a9d9a 100644 --- a/crates/shadowsocks/Cargo.toml +++ b/crates/shadowsocks/Cargo.toml @@ -52,7 +52,7 @@ libc = "0.2.141" bytes = "1.5" cfg-if = "1" byte_string = "1.0" -base64 = "0.21" +base64 = "0.22" url = "2.5" once_cell = "1.17" spin = { version = "0.9", features = ["std"] }