From 55705a59458ec08c87b7045cea8ff47086d5e331 Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Tue, 17 Oct 2023 00:03:45 +0000 Subject: [PATCH] Update Rust crate base64 to 0.21.4 --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6d61cab..cd82731 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -55,7 +55,7 @@ dependencies = [ "actix-service", "actix-utils", "ahash 0.8.3", - "base64 0.21.3", + "base64 0.21.4", "bitflags 1.3.2", "brotli", "bytes", @@ -554,9 +554,9 @@ checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" [[package]] name = "base64" -version = "0.21.3" +version = "0.21.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "414dcefbc63d77c526a76b3afcf6fbb9b5e2791c19c3aa2297733208750c6e53" +checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" [[package]] name = "base64ct" @@ -570,7 +570,7 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "18b3d30abb74120a9d5267463b9e0045fdccc4dd152e7249d966612dc1721384" dependencies = [ - "base64 0.21.3", + "base64 0.21.4", "serde", "serde_json", ] @@ -586,7 +586,7 @@ dependencies = [ "actix-web", "askama", "base32", - "base64 0.21.3", + "base64 0.21.4", "bcrypt", "bincode", "chrono", @@ -629,7 +629,7 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "28d1c9c15093eb224f0baa400f38fcd713fc1391a6f1c389d886beef146d60a3" dependencies = [ - "base64 0.21.3", + "base64 0.21.4", "blowfish", "getrandom", "subtle", @@ -1831,7 +1831,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "608aa1b7148a6eeab631c6267deca33407ff851ab50eea115e52c13a9bb184ee" dependencies = [ "aes-gcm", - "base64 0.21.3", + "base64 0.21.4", "bincode", "log", "rand", @@ -2398,7 +2398,7 @@ version = "0.11.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91" dependencies = [ - "base64 0.21.3", + "base64 0.21.4", "bytes", "encoding_rs", "futures-core", diff --git a/Cargo.toml b/Cargo.toml index 4e72b26..46ca490 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ askama = "0.12.1" futures-util = "0.3.28" urlencoding = "2.1.3" rand = "0.8.5" -base64 = "0.21.3" +base64 = "0.21.4" jwt-simple = "0.11.7" digest = "0.10.7" sha2 = "0.10.8"