[package] name = "scrypt" version = "0.12.0-pre.2" description = "Scrypt password-based key derivation function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" readme = "README.md" documentation = "https://docs.rs/scrypt" homepage = "https://github.com/RustCrypto/password-hashes/tree/master/scrypt" repository = "https://github.com/RustCrypto/password-hashes" keywords = ["crypto", "hashing", "password", "phf"] categories = ["authentication", "cryptography", "no-std"] edition = "2021" rust-version = "1.81" [dependencies] pbkdf2 = { version = "=0.13.0-pre.1", path = "../pbkdf2" } salsa20 = { version = "=0.11.0-pre.2", default-features = false } sha2 = { version = "=0.11.0-pre.4", default-features = false } # optional dependencies password-hash = { version = "0.6.0-rc.0", default-features = false, features = ["rand_core"], optional = true } [dev-dependencies] password-hash = { version = "0.6.0-rc.0", features = ["rand_core"] } [features] default = ["simple", "std"] simple = ["password-hash"] std = ["password-hash/std"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]