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

build(deps): bump bcrypt from 0.14.0 to 0.15.0

Bumps [bcrypt](https://github.com/Keats/rust-bcrypt) from 0.14.0 to 0.15.0.
- [Commits](https://github.com/Keats/rust-bcrypt/compare/v0.14.0...v0.15.0)

---
updated-dependencies:
- dependency-name: bcrypt
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

4
Cargo.lock generated
View File

@ -1007,9 +1007,9 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]]
name = "bcrypt"
version = "0.14.0"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9df288bec72232f78c1ec5fe4e8f1d108aa0265476e93097593c803c8c02062a"
checksum = "28d1c9c15093eb224f0baa400f38fcd713fc1391a6f1c389d886beef146d60a3"
dependencies = [
"base64 0.21.2",
"blowfish",

View File

@ -42,7 +42,7 @@ serde_urlencoded = "0.7.1"
# Password hashing
argon2 = { version = "0.5.0", features = ["password-hash", "std"] }
bcrypt = "0.14.0"
bcrypt = "0.15.0"
pbkdf2 = { version = "0.12.1", features = ["password-hash", "std", "simple"] }
zeroize = "1.6.0"