diff --git a/Cargo.lock b/Cargo.lock index d6d5a563..88b82e58 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2328,8 +2328,7 @@ dependencies = [ [[package]] name = "rust-argon2" version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e71971821b3ae0e769e4a4328dbcb517607b434db7697e9aba17203ec14e46a" +source = "git+https://github.com/sru-systems/rust-argon2?rev=e6cb5bf99643e565f4f0d103960d655dac9f3097#e6cb5bf99643e565f4f0d103960d655dac9f3097" dependencies = [ "base64", "blake2b_simd", diff --git a/Cargo.toml b/Cargo.toml index 4396fe3a..798fcf04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ serde = { version = "1.0.188", features = ["rc"] } # Used for secure identifiers rand = "0.8.5" # Used to hash passwords -rust-argon2 = "2.0.0" +rust-argon2 = { git = "https://github.com/sru-systems/rust-argon2", rev = "e6cb5bf99643e565f4f0d103960d655dac9f3097" } reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls-native-roots", "socks"] } # Used for conduit::Error type thiserror = "1.0.40"