1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

Bump password-hash from 0.4.0 to 0.4.1

Bumps [password-hash](https://github.com/RustCrypto/traits) from 0.4.0 to 0.4.1.
- [Release notes](https://github.com/RustCrypto/traits/releases)
- [Commits](https://github.com/RustCrypto/traits/compare/password-hash-v0.4.0...password-hash-v0.4.1)

---
updated-dependencies:
- dependency-name: password-hash
  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]
2022-04-22 19:56:54 +00:00
committed by Quentin Gliech
parent 374669fa7d
commit 3885aff6cb
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -2718,9 +2718,9 @@ dependencies = [
[[package]]
name = "password-hash"
version = "0.4.0"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa26fd5c3cd6e6bb83dd9c0cef40fbeb77d7596339ca46c18a6f66919bb07769"
checksum = "e029e94abc8fb0065241c308f1ac6bc8d20f450e8f7c5f0b25cd9b8d526ba294"
dependencies = [
"base64ct",
"rand_core",

View File

@ -17,7 +17,7 @@ tracing = "0.1.34"
# Password hashing
argon2 = { version = "0.4.0", features = ["password-hash"] }
password-hash = { version = "0.4.0", features = ["std"] }
password-hash = { version = "0.4.1", features = ["std"] }
rand = "0.8.5"
url = { version = "2.2.2", features = ["serde"] }