From 8f1725b8e0db797cc1a27ed4a8199349ceaf3c07 Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Fri, 26 May 2023 00:29:15 +0000 Subject: [PATCH] Update Rust crate base64 to 0.21.2 --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9012a02..d27139d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -54,7 +54,7 @@ dependencies = [ "actix-service", "actix-utils", "ahash 0.8.3", - "base64 0.21.1", + "base64 0.21.2", "bitflags", "brotli", "bytes", @@ -531,9 +531,9 @@ checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" [[package]] name = "base64" -version = "0.21.1" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f1e31e207a6b8fb791a38ea3105e6cb541f55e4d029902d3039a4ad07cc4105" +checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" [[package]] name = "base64ct" @@ -547,7 +547,7 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "18b3d30abb74120a9d5267463b9e0045fdccc4dd152e7249d966612dc1721384" dependencies = [ - "base64 0.21.1", + "base64 0.21.2", "serde", "serde_json", ] @@ -563,7 +563,7 @@ dependencies = [ "actix-web", "askama", "base32", - "base64 0.21.1", + "base64 0.21.2", "bcrypt", "bincode", "chrono", @@ -606,7 +606,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9df288bec72232f78c1ec5fe4e8f1d108aa0265476e93097593c803c8c02062a" dependencies = [ - "base64 0.21.1", + "base64 0.21.2", "blowfish", "getrandom", "subtle", @@ -1783,7 +1783,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "608aa1b7148a6eeab631c6267deca33407ff851ab50eea115e52c13a9bb184ee" dependencies = [ "aes-gcm", - "base64 0.21.1", + "base64 0.21.2", "bincode", "log", "rand", @@ -2341,7 +2341,7 @@ version = "0.11.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91" dependencies = [ - "base64 0.21.1", + "base64 0.21.2", "bytes", "encoding_rs", "futures-core", diff --git a/Cargo.toml b/Cargo.toml index 81144e4..141f594 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ askama = "0.12.0" futures-util = "0.3.28" urlencoding = "2.1.2" rand = "0.8.5" -base64 = "0.21.1" +base64 = "0.21.2" jwt-simple = "0.11.5" digest = "0.10.7" sha2 = "0.10.6"