-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 876 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 876 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
[package]
name = "kbkdf"
version = "0.1.0-rc.1"
edition = "2024"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/RustCrypto/KDFs/tree/master/kbkdf"
repository = "https://github.com/RustCrypto/KDFs/"
description = "Key Derivation Using Pseudorandom Function (KBKDF)"
keywords = ["crypto", "KBKDF", "KDF"]
categories = ["cryptography", "no-std"]
readme = "README.md"
rust-version = "1.85"
exclude = ["/tests/*"]
[dependencies]
digest = { version = "0.11", default-features = false, features = ["mac"] }
[dev-dependencies]
hex-literal = "1"
hex = "0.4"
hmac = { version = "0.13", default-features = false }
sha2 = { version = "0.11", default-features = false }
sha1 = { version = "0.11", default-features = false }
cmac = "0.8.0-rc.4"
aes = "0.9.0-rc.4"
[lints]
workspace = true
[package.metadata.docs.rs]
all-features = true