-
Notifications
You must be signed in to change notification settings - Fork 84
/
Cargo.toml
34 lines (29 loc) · 1.11 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
[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"]