25 lines
574 B
TOML
25 lines
574 B
TOML
|
[package]
|
||
|
name = "poplar_crypto"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
sha2 = { version = "0.10", optional = true }
|
||
|
|
||
|
hmac = { version = "0.12", optional = true }
|
||
|
hkdf = { version = "0.12", optional = true }
|
||
|
|
||
|
rand_core = { version = "0.6", optional = true }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
criterion = { version = "0.5", features = ["html_reports"] }
|
||
|
rand = "0.8"
|
||
|
|
||
|
[features]
|
||
|
ratchet = ["hkdf", "sha2", "rand_core"] # PoplarRatchet
|
||
|
|
||
|
[[bench]]
|
||
|
name = "ratchet"
|
||
|
harness = false
|