diff --git a/Cargo.lock b/Cargo.lock index c102db6c..a1e12c14 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index c1f3d64e..953ca7a7 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -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" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 7082008d..3cc45bed 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -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" } diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index e667cf55..5bbffb99 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -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"] }