-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 1001 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 1001 Bytes
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
[package]
name = "bcrypt-pbkdf"
version = "0.11.0"
description = "bcrypt-pbkdf password-based key derivation function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/bcrypt-pbkdf"
homepage = "https://github.com/RustCrypto/password-hashes/tree/master/bcrypt-pbkdf"
repository = "https://github.com/RustCrypto/password-hashes"
keywords = ["crypto", "hashing", "password", "phf"]
categories = ["authentication", "cryptography", "no-std"]
edition = "2024"
rust-version = "1.85"
[dependencies]
blowfish = { version = "0.10", features = ["bcrypt"] }
pbkdf2 = { version = "0.13", default-features = false }
sha2 = { version = "0.11", default-features = false }
# optional features
zeroize = { version = "1", default-features = false, optional = true }
[dev-dependencies]
hex-literal = "1"
[features]
default = ["alloc"]
alloc = []
zeroize = ["dep:zeroize"]
[lints]
workspace = true
[package.metadata.docs.rs]
all-features = true