From 212105ca4d99481a52945a9e06d90b146f2b3744 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 11 Sep 2023 17:34:39 +0000 Subject: [PATCH] Update Rust crate base64 to v0.21.4 --- 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 7d296b2..9698e09 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -166,15 +166,9 @@ dependencies = [ [[package]] name = "base64" -version = "0.13.1" +version = "0.21.4" 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 = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" [[package]] name = "bincode" @@ -1052,7 +1046,7 @@ checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" name = "lox-distributor" version = "0.1.0" dependencies = [ - "base64 0.13.1", + "base64", "chrono", "clap", "futures", @@ -1077,7 +1071,7 @@ name = "lox-library" version = "0.1.0" dependencies = [ "aes-gcm", - "base64 0.13.1", + "base64", "bincode", "chrono", "curve25519-dalek-ng", @@ -1692,7 +1686,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", @@ -1846,7 +1840,7 @@ version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ca3b16a3d82c4088f343b7480a93550b3eabe1a358569c2dfe38bbcead07237" dependencies = [ - "base64 0.21.2", + "base64", "chrono", "hex", "indexmap 1.9.3", diff --git a/crates/lox-distributor/Cargo.toml b/crates/lox-distributor/Cargo.toml index c9389bd..2af77df 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.4" 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 dcfa9a0..4f58682 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.28" subtle = "2.5" thiserror = "1.0.48"