![dependabot[bot]](/assets/img/avatar_default.png)
* Update criterion requirement from 0.5.1 to 0.6.0 Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/bheisler/criterion.rs/compare/0.5.1...0.6.0) --- updated-dependencies: - dependency-name: criterion dependency-version: 0.6.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * clippy * undo / too modern * clip --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dominik Maier <dmnk@google.com>
43 lines
1.0 KiB
TOML
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 = "2024"
|
|
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.6.0" # 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
|