diff --git a/scrypt/Cargo.toml b/scrypt/Cargo.toml index f8462f09..f29db076 100644 --- a/scrypt/Cargo.toml +++ b/scrypt/Cargo.toml @@ -14,7 +14,7 @@ readme = "README.md" [dependencies] base64ct = { version = "0.2", default-features = false, features = ["alloc"], optional = true } hmac = "0.10" -password-hash = { version = "0.1", default-features = false, optional = true } +password-hash = { version = "0.1", default-features = false, features = ["rand_core"], optional = true } pbkdf2 = { version = "0.7", default-features = false, path = "../pbkdf2" } salsa20 = { version = "0.7", default-features = false, features = ["expose-core"] } sha2 = { version = "0.9", default-features = false }