From 569c5957e16d4f384513f6119094d25e41a3ca6b Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 30 Aug 2023 18:04:36 +0000 Subject: [PATCH] Update Rust crate base64 to v0.21.3 --- Cargo.lock | 18 ++++++------------ crates/lox-distributor/Cargo.toml | 2 +- crates/lox-library/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1891f68..29b80a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -167,15 +167,9 @@ dependencies = [ [[package]] name = "base64" -version = "0.13.1" +version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" - -[[package]] -name = "base64" -version = "0.21.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" +checksum = "414dcefbc63d77c526a76b3afcf6fbb9b5e2791c19c3aa2297733208750c6e53" [[package]] name = "bincode" @@ -975,7 +969,7 @@ checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" name = "lox-distributor" version = "0.1.0" dependencies = [ - "base64 0.13.1", + "base64", "chrono", "clap", "futures", @@ -999,7 +993,7 @@ name = "lox-library" version = "0.1.0" dependencies = [ "aes-gcm", - "base64 0.13.1", + "base64", "bincode", "chrono", "curve25519-dalek-ng", @@ -1571,7 +1565,7 @@ version = "0.11.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" dependencies = [ - "base64 0.21.2", + "base64", "bytes", "encoding_rs", "futures-core", @@ -1725,7 +1719,7 @@ version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21e47d95bc83ed33b2ecf84f4187ad1ab9685d18ff28db000c99deac8ce180e3" dependencies = [ - "base64 0.21.2", + "base64", "chrono", "hex", "indexmap", diff --git a/crates/lox-distributor/Cargo.toml b/crates/lox-distributor/Cargo.toml index 2e2f4ea..326d48a 100644 --- a/crates/lox-distributor/Cargo.toml +++ b/crates/lox-distributor/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["tor", "lox", "bridges"] [dependencies] julianday = "1.2.0" -base64 = "0.13.1" +base64 = "0.21.3" hyper = { version = "0.14.27", features = ["server"] } hex_fmt = "0.3" futures = "0.3.28" diff --git a/crates/lox-library/Cargo.toml b/crates/lox-library/Cargo.toml index 91d4829..6343d2a 100644 --- a/crates/lox-library/Cargo.toml +++ b/crates/lox-library/Cargo.toml @@ -23,7 +23,7 @@ statistical = "1.0.0" lazy_static = "1" hex_fmt = "0.3" aes-gcm = "0.8" -base64 = "0.13" +base64 = "0.21" time = "0.3.21" subtle = "2.4" thiserror = "1.0.40"