From 16b2efb2afcf2dc1d446b23e73c85d59fcfe6c5c Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Wed, 1 May 2024 00:03:18 +0000 Subject: [PATCH] Update Rust crate base64 to 0.22.1 --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f1fc2cd..a20d6f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -570,9 +570,9 @@ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" [[package]] name = "base64" -version = "0.22.0" +version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" @@ -602,7 +602,7 @@ dependencies = [ "actix-web", "askama", "base32", - "base64 0.22.0", + "base64 0.22.1", "bcrypt", "bincode", "chrono", @@ -646,7 +646,7 @@ version = "0.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e65938ed058ef47d92cf8b346cc76ef48984572ade631927e9937b5ffc7662c7" dependencies = [ - "base64 0.22.0", + "base64 0.22.1", "blowfish", "getrandom", "subtle", @@ -1815,7 +1815,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "740b0dd2309a8d6f7ef6612ce58692407b87e1cd33728b8d1dfec639faa27066" dependencies = [ "aes-gcm", - "base64 0.22.0", + "base64 0.22.1", "bincode", "log", "rand", @@ -2372,7 +2372,7 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e6cc1e89e689536eb5aeede61520e874df5a4707df811cd5da4aa5fbb2aae19" dependencies = [ - "base64 0.22.0", + "base64 0.22.1", "bytes", "encoding_rs", "futures-core", diff --git a/Cargo.toml b/Cargo.toml index 5c513e1..2837016 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ askama = "0.12.1" futures-util = "0.3.30" urlencoding = "2.1.3" rand = "0.8.5" -base64 = "0.22.0" +base64 = "0.22.1" jwt-simple = { version = "0.12.9", default-features = false, features = ["pure-rust"] } digest = "0.10.7" sha2 = "0.10.8"