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

Bump argon2 from 0.3.3 to 0.3.4

Bumps [argon2](https://github.com/RustCrypto/password-hashes) from 0.3.3 to 0.3.4.
- [Release notes](https://github.com/RustCrypto/password-hashes/releases)
- [Commits](https://github.com/RustCrypto/password-hashes/compare/argon2-v0.3.3...argon2-v0.3.4)

---
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]
2022-02-18 19:39:48 +00:00
committed by Quentin Gliech
parent e4ef5788fa
commit e1d7f78b69
4 changed files with 5 additions and 5 deletions

4
Cargo.lock generated
View File

@ -82,9 +82,9 @@ dependencies = [
[[package]]
name = "argon2"
version = "0.3.3"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0a21e93ce9e91fcd0e01744e4f205fb9192f82915646a7e880dfef0ab4a38d8"
checksum = "25df3c03f1040d0069fcd3907e24e36d59f9b6fa07ba49be0eb25a794f036ba7"
dependencies = [
"base64ct",
"blake2",

View File

@ -18,7 +18,7 @@ serde_yaml = "0.8.23"
serde_json = "1.0.79"
warp = "0.3.2"
url = "2.2.2"
argon2 = { version = "0.3.3", features = ["password-hash"] }
argon2 = { version = "0.3.4", features = ["password-hash"] }
reqwest = { version = "0.11.9", features = ["rustls-tls"], default-features = false, optional = true }
watchman_client = "0.7.1"
atty = "0.2.14"

View File

@ -36,7 +36,7 @@ serde_json = "1.0.79"
serde_urlencoded = "0.7.1"
# Password hashing
argon2 = { version = "0.3.3", features = ["password-hash"] }
argon2 = { version = "0.3.4", features = ["password-hash"] }
# Crypto, hashing and signing stuff
rsa = { git = "https://github.com/RustCrypto/RSA.git" }

View File

@ -16,7 +16,7 @@ tracing = "0.1.30"
warp = "0.3.2"
# Password hashing
argon2 = { version = "0.3.3", features = ["password-hash"] }
argon2 = { version = "0.3.4", features = ["password-hash"] }
password-hash = { version = "0.3.2", features = ["std"] }
rand = "0.8.5"
url = { version = "2.2.2", features = ["serde"] }