[package]
name = "scrypt"
version = "0.8.1"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Scrypt password-based key derivation function"
documentation = "https://docs.rs/scrypt"
repository = "https://github.com/RustCrypto/password-hashes/tree/master/scrypt"
keywords = ["crypto", "password", "hashing"]
categories = ["cryptography"]
edition = "2018"
readme = "README.md"
[dependencies]
hmac = "0.12"
pbkdf2 = { version = "0.10", default-features = false, path = "../pbkdf2" }
salsa20 = { version = "0.9", default-features = false, features = ["expose-core"] }
sha2 = { version = "0.10", default-features = false }
password-hash = { version = "0.3", default-features = false, features = ["rand_core"], optional = true }
[dev-dependencies]
password-hash = { version = "0.3", 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"]