
* reduce diffexecutor constraints for new (so it may be used in a manager-less environment) * add differential observers * finish differential observeration * requirement for observers (weak), default impl for time observer * make the map swapper, revisit how differentialobserver is implemented * semi-specialise multimap, add example * improve example slightly * fix clippy lints * fix last clippy issue * better docs + example flow * improve example: correct map sizing + multimap vs split slice * correct some comments * fix tests + slight bit more docs * fix bindings * fixups for the CI * typo fix Co-authored-by: Dominik Maier <domenukk@gmail.com> Co-authored-by: Dominik Maier <dmnk@google.com>
41 lines
781 B
TOML
41 lines
781 B
TOML
[package]
|
|
name = "baby_fuzzer_swap_differential"
|
|
version = "0.7.1"
|
|
authors = ["Addison Crump <research@addisoncrump.info>"]
|
|
edition = "2021"
|
|
default-run = "fuzzer_sd"
|
|
|
|
[features]
|
|
tui = []
|
|
multimap = []
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
debug = true
|
|
|
|
[build-dependencies]
|
|
anyhow = "1"
|
|
bindgen = "0.61"
|
|
cc = "1.0"
|
|
|
|
[dependencies]
|
|
libafl = { path = "../../libafl" }
|
|
libafl_targets = { path = "../../libafl_targets", features = ["sancov_pcguard_hitcounts", "libfuzzer", "sancov_cmplog", "pointer_maps"] }
|
|
mimalloc = { version = "*", default-features = false }
|
|
|
|
libafl_cc = { path = "../../libafl_cc/" }
|
|
|
|
[[bin]]
|
|
name = "fuzzer_sd"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "libafl_cc"
|
|
path = "src/bin/libafl_cc.rs"
|