From 17cce01d99279891d9e740afcb9ad78319838984 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 16 Jul 2023 23:03:22 +0000 Subject: [PATCH] chore(deps): bump argon2 from 0.5.0 to 0.5.1 (#1867) Bumps [argon2](https://github.com/RustCrypto/password-hashes) from 0.5.0 to 0.5.1. - [Commits](https://github.com/RustCrypto/password-hashes/compare/argon2-v0.5.0...argon2-v0.5.1) --- updated-dependencies: - dependency-name: argon2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5369872b2..3aab97f0c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -192,12 +192,13 @@ checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c" [[package]] name = "argon2" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95c2fcf79ad1932ac6269a738109997a83c227c09b75842ae564dc8ede6a861c" +checksum = "b2e554a8638bdc1e4eae9984845306cc95f8a9208ba8d49c3859fd958b46774d" dependencies = [ "base64ct", "blake2", + "cpufeatures", "password-hash", ] diff --git a/Cargo.toml b/Cargo.toml index dab74224d..a10964e1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ homepage = "https://github.com/kanidm/kanidm/" repository = "https://github.com/kanidm/kanidm/" [workspace.dependencies] -argon2 = { version = "0.5.0", features = ["alloc"] } +argon2 = { version = "0.5.1", features = ["alloc"] } async-recursion = "1.0.4" async-trait = "^0.1.71" axum = {version = "0.6.18", features = ["json", "http2", "macros", "tracing", "headers", "original-uri", "query", "form", "http2"]}