File: Cargo.toml.orig

package info (click to toggle)
rust-bcrypt-pbkdf 0.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 116 kB
  • sloc: makefile: 2
file content (27 lines) | stat: -rw-r--r-- 864 bytes parent folder | download
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
[package]
name = "bcrypt-pbkdf"
version = "0.10.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"
repository = "https://github.com/RustCrypto/password-hashes/tree/master/bcrypt-pbkdf"
keywords = ["crypto", "hashing", "password", "phf"]
categories = ["authentication", "cryptography", "no-std"]
edition = "2021"
rust-version = "1.60"

[dependencies]
blowfish = { version = "0.9.1", features = ["bcrypt"] }
pbkdf2 = { version = "0.12", default-features = false, path = "../pbkdf2" }
sha2 = { version = "0.10.5", default-features = false }
zeroize = { version = "1", default-features = false, optional = true }

[dev-dependencies]
hex-literal = "0.3.3"

[features]
default = ["alloc", "std"]
alloc = []
std = []