sponges/benches/Cargo.toml

30 lines
551 B
TOML
Raw Normal View History

[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 = "2024"
rust-version = "1.85"
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