-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 1.04 KB
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
[package]
name = "password-hash"
version = "0.6.0-rc.12"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/password-hash"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "MIT OR Apache-2.0"
categories = ["authentication", "cryptography", "no-std"]
keywords = ["crypt", "mcf", "password", "pbkdf", "phc"]
description = """
Traits which describe the functionality of password hashing algorithms, with optional support for a
`no_std`-friendly implementation of the PHC string format, as well as generic support for other
formats (e.g. Modular Crypt Format)
"""
[dependencies]
getrandom = { version = "0.4", optional = true, default-features = false }
phc = { version = "0.6", optional = true, default-features = false }
rand_core = { version = "0.10", optional = true, default-features = false }
[features]
alloc = ["phc?/alloc"]
getrandom = ["dep:getrandom", "phc?/getrandom"]
rand_core = ["dep:rand_core", "phc?/rand_core"]
[package.metadata.docs.rs]
all-features = true