2023-03-12 16:25:14 +01:00
|
|
|
[package]
|
|
|
|
|
name = "benches"
|
|
|
|
|
version = "0.0.0"
|
|
|
|
|
description = "Criteration benchmarks of the sponges crates"
|
|
|
|
|
authors = [
|
|
|
|
|
"Sebastian Ramacher <sebastian.ramacher@ait.ac.at>",
|
|
|
|
|
"RustCrypto Developers",
|
|
|
|
|
]
|
2025-09-02 20:09:23 -06:00
|
|
|
edition = "2024"
|
|
|
|
|
rust-version = "1.85"
|
2023-03-12 16:25:14 +01:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
ascon = { path = "../ascon" }
|
|
|
|
|
criterion = "0.4"
|
|
|
|
|
rand = { version = "0.8", default-features = false, features = [
|
|
|
|
|
"std_rng",
|
|
|
|
|
"getrandom",
|
|
|
|
|
] }
|
|
|
|
|
|
|
|
|
|
[features]
|
2023-08-19 19:24:47 +03:00
|
|
|
no_unroll = ["ascon/no_unroll"]
|
2023-03-12 16:25:14 +01:00
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "ascon"
|
|
|
|
|
path = "src/ascon.rs"
|
|
|
|
|
harness = false
|