mirror of
https://github.com/logos-blockchain/sponges.git
synced 2026-07-30 02:23:31 +00:00
30 lines
551 B
TOML
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
|