pbkdf2 0.6.0

Generic implementation of PBKDF2
Documentation
[package]
name = "pbkdf2"
version = "0.6.0"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Generic implementation of PBKDF2"
documentation = "https://docs.rs/pbkdf2"
repository = "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2"
keywords = ["crypto", "password", "hashing"]
categories = ["cryptography", "no-std"]
edition = "2018"
readme = "README.md"

[dependencies]
crypto-mac = "0.10"

rayon = { version = "1", optional = true }
base64 = { version = "0.13", default-features = false, features = ["alloc"], optional = true }
rand = { version = "0.7", default-features = false, optional = true }
rand_core = { version = "0.5", default-features = false, features = ["getrandom"], optional = true }
hmac = { version = "0.10", default-features = false, optional = true }
sha2 = { version = "0.9", default-features = false, optional = true }
subtle = { version = "2", default-features = false, optional = true }

[dev-dependencies]
hmac = "0.10"
sha-1 = "0.9"
sha2 = "0.9"

[features]
default = ["include_simple", "thread_rng"]
parallel = ["rayon", "std"]
include_simple = ["sha2", "hmac", "rand_core", "base64", "subtle"]
thread_rng = ["rand"]
std = []