1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-06 06:02:40 +03:00

build(deps): bump argon2 from 0.5.1 to 0.5.2

Bumps [argon2](https://github.com/RustCrypto/password-hashes) from 0.5.1 to 0.5.2.
- [Commits](https://github.com/RustCrypto/password-hashes/compare/argon2-v0.5.1...argon2-v0.5.2)

---
updated-dependencies:
- dependency-name: argon2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2023-09-04 19:07:17 +00:00
committed by Quentin Gliech
parent ef388b9fdc
commit d256bee1fd
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@@ -204,9 +204,9 @@ checksum = "e2d098ff73c1ca148721f37baad5ea6a465a13f9573aba8641fbbbae8164a54e"
[[package]] [[package]]
name = "argon2" name = "argon2"
version = "0.5.1" version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2e554a8638bdc1e4eae9984845306cc95f8a9208ba8d49c3859fd958b46774d" checksum = "17ba4cac0a46bc1d2912652a751c47f2a9f3a7fe89bcae2275d418f5270402f9"
dependencies = [ dependencies = [
"base64ct", "base64ct",
"blake2", "blake2",

View File

@@ -45,7 +45,7 @@ serde_json.workspace = true
serde_urlencoded = "0.7.1" serde_urlencoded = "0.7.1"
# Password hashing # Password hashing
argon2 = { version = "0.5.1", features = ["password-hash", "std"] } argon2 = { version = "0.5.2", features = ["password-hash", "std"] }
bcrypt = "0.15.0" bcrypt = "0.15.0"
pbkdf2 = { version = "0.12.2", features = ["password-hash", "std", "simple", "parallel"] } pbkdf2 = { version = "0.12.2", features = ["password-hash", "std", "simple", "parallel"] }
zeroize = "1.6.0" zeroize = "1.6.0"