sponges/benches/Cargo.toml
2023-08-19 19:24:47 +03:00

30 lines
551 B
TOML

[package]
name = "benches"
version = "0.0.0"
description = "Criteration benchmarks of the sponges crates"
authors = [
"Sebastian Ramacher <sebastian.ramacher@ait.ac.at>",
"RustCrypto Developers",
]
edition = "2021"
rust-version = "1.60"
publish = false
[workspace]
[dev-dependencies]
ascon = { path = "../ascon" }
criterion = "0.4"
rand = { version = "0.8", default-features = false, features = [
"std_rng",
"getrandom",
] }
[features]
no_unroll = ["ascon/no_unroll"]
[[bench]]
name = "ascon"
path = "src/ascon.rs"
harness = false