From 339523d347772a610e8b3fb3bb8e61f4effc5163 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Mar 2023 18:21:55 +1300 Subject: [PATCH] Update argon2 requirement from 0.4 to 0.5 (#72) Updates the requirements on [argon2](https://github.com/RustCrypto/password-hashes) to permit the latest version. - [Release notes](https://github.com/RustCrypto/password-hashes/releases) - [Commits](https://github.com/RustCrypto/password-hashes/compare/scrypt-v0.4.0...argon2-v0.5.0) --- updated-dependencies: - dependency-name: argon2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a4f3e82..87a1597 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ panic = 'abort' [dependencies] aes-gcm = "0.10" anyhow = "1.0" -argon2 = "0.4" +argon2 = "0.5" base64 = "0.21" bincode = "1.3" blake3 = "1.3"