-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathCargo.toml
42 lines (36 loc) · 1.33 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "pbkdf2"
version = "0.13.0-pre.1"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Generic implementation of PBKDF2"
documentation = "https://docs.rs/pbkdf2"
homepage = "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2"
repository = "https://github.com/RustCrypto/password-hashes"
keywords = ["crypto", "hashing", "password", "phf"]
categories = ["authentication", "cryptography", "no-std"]
readme = "README.md"
edition = "2021"
rust-version = "1.81"
[dependencies]
digest = { version = "=0.11.0-pre.9", features = ["mac"] }
# optional dependencies
rayon = { version = "1.7", optional = true }
password-hash = { version = "0.6.0-rc.0", default-features = false, optional = true, features = ["rand_core"] }
hmac = { version = "=0.13.0-pre.4", default-features = false, optional = true }
sha1 = { version = "=0.11.0-pre.4", default-features = false, optional = true }
sha2 = { version = "=0.11.0-pre.4", default-features = false, optional = true }
[dev-dependencies]
hmac = "=0.13.0-pre.4"
hex-literal = "0.4"
sha1 = "=0.11.0-pre.4"
sha2 = "=0.11.0-pre.4"
streebog = "=0.11.0-pre.4"
[features]
default = ["hmac"]
std = ["password-hash/std"]
parallel = ["rayon", "std"]
simple = ["hmac", "password-hash", "sha2"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]