From 1d12e6744b2c8e6c570f8b60cdf3c9c0d1cb58d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 16:29:34 +0000 Subject: [PATCH] Bump base64 from 0.13.1 to 0.21.5 Bumps [base64](https://github.com/marshallpierce/rust-base64) from 0.13.1 to 0.21.5. - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.13.1...v0.21.5) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++---------- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 784d581..4e8bab4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -194,12 +194,6 @@ dependencies = [ "rustc-demangle", ] -[[package]] -name = "base64" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" - [[package]] name = "base64" version = "0.21.5" @@ -362,7 +356,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24" dependencies = [ "aes-gcm", - "base64 0.21.5", + "base64", "hkdf", "percent-encoding", "rand", @@ -560,7 +554,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dbfb21b9878cf7a348dcb8559109aabc0ec40d69924bd706fa5149846c4fef75" dependencies = [ - "base64 0.21.5", + "base64", "memchr", ] @@ -1056,7 +1050,7 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76bd09637ae3ec7bd605b8e135e757980b3968430ff2b1a4a94fb7769e50166d" dependencies = [ - "base64 0.21.5", + "base64", "email-encoding", "email_address", "fastrand 1.9.0", @@ -2764,7 +2758,7 @@ version = "2.0.1" dependencies = [ "askama", "askama_rocket", - "base64 0.13.1", + "base64", "bincode", "chrono", "diesel", diff --git a/Cargo.toml b/Cargo.toml index a2e5a6f..21b3521 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ authors = ["Rien Maertens "] [dependencies] askama = { git = "https://github.com/djc/askama.git", rev = "40bb338", features = ["with-rocket", "mime", "mime_guess"] } askama_rocket = { git = "https://github.com/djc/askama.git", rev = "40bb338" } -base64 = "0.13" +base64 = "0.21" bincode = "1.0" pwhash = "1.0" chrono = { version = "0.4", features = ["serde"] }