pbkdf2 0.3.0

Generic implementation of PBKDF2
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "pbkdf2"
version = "0.3.0"
authors = ["RustCrypto Developers"]
description = "Generic implementation of PBKDF2"
documentation = "https://docs.rs/pbkdf2"
keywords = ["crypto", "password", "hashing"]
categories = ["cryptography", "no-std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RustCrypto/password-hashing"
[dependencies.base64]
version = "0.9"
optional = true

[dependencies.byteorder]
version = "1"
default-features = false

[dependencies.crypto-mac]
version = "0.7"

[dependencies.hmac]
version = "0.7"
optional = true

[dependencies.rand]
version = "0.5"
optional = true

[dependencies.rayon]
version = "1"
optional = true

[dependencies.sha2]
version = "0.8"
optional = true

[dependencies.subtle]
version = "1"
optional = true
default-features = false
[dev-dependencies.hmac]
version = "0.7"

[dev-dependencies.sha-1]
version = "0.8"

[dev-dependencies.sha2]
version = "0.8"

[features]
default = ["include_simple"]
include_simple = ["sha2", "hmac", "rand", "base64", "subtle"]
parallel = ["rayon"]
[badges.travis-ci]
repository = "RustCrypto/password-hashing"