Marco C. eb2ac10d1e
Libafl workspace internal deps in workspace Cargo.toml (#2691)
* Add internal deps to workspace

* libafl: use workspace internal deps

* libafl_bolts: use workspace internal deps

* 0.14.0

* use workspace internal deps
2024-11-15 18:13:39 +01:00

43 lines
1.0 KiB
TOML

[package]
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",
]
name = "libafl_benches"
version.workspace = true
edition = "2021"
description = "LibAFL Benchmarks"
documentation = "https://docs.rs/libafl"
repository = "https://github.com/AFLplusplus/LibAFL/"
readme = "../../README.md"
license = "MIT OR Apache-2.0"
keywords = ["fuzzing", "libafl", "benchmarks"]
categories = [
"development-tools::testing",
"emulators",
"embedded",
"os",
"no-std",
]
[dev-dependencies]
libafl_bolts = { workspace = true, features = ["xxh3", "alloc"] } # libafl_bolts
criterion = "0.5.1" # Benchmarking
ahash = { workspace = true, default-features = false } # The hash function already used in hashbrown
rustc-hash = { version = "2.0.0", default-features = false } # yet another hash
xxhash-rust = { version = "0.8.12", features = [
"xxh3",
] } # xxh3 hashing for rust
[lints]
workspace = true
[[bench]]
name = "rand_speeds"
harness = false
[[bench]]
name = "hash_speeds"
harness = false