
* libafl_targets: refactor sancov trace-pc * cmp observer * libaf_targets: new structure to isolate sancov * fix C warning * combined executor * cmp observer and feedback * I2SRandReplace mutator * impl CmpMap for CmpLogMap in libafl_targets * cmplog observer * clippy * TracingStage * working random cmplog mutations * enable cmplog for libfuzzer_stb_image * re-enable new testcase stats print * fix update stats display * bump 0.3.1 * clippy * clippy * no clippy for fuzzers/ * fix Co-authored-by: Dominik Maier <domenukk@gmail.com>
31 lines
944 B
TOML
31 lines
944 B
TOML
[package]
|
|
name = "libafl_targets"
|
|
version = "0.3.1"
|
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
|
|
description = "Common code for target instrumentation that can be used combined with LibAFL"
|
|
documentation = "https://docs.rs/libafl_targets"
|
|
repository = "https://github.com/AFLplusplus/LibAFL/"
|
|
readme = "../README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["fuzzing", "testing"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = []
|
|
libfuzzer = []
|
|
sancov_pcguard_edges = []
|
|
sancov_pcguard_hitcounts = []
|
|
sancov_value_profile = []
|
|
sancov_cmplog = []
|
|
sancov_pcguard = ["sancov_pcguard_hitcounts"]
|
|
clippy = [] # Ignore compiler warnings during clippy
|
|
|
|
[build-dependencies]
|
|
cc = { version = "1.0", features = ["parallel"] }
|
|
|
|
[dependencies]
|
|
rangemap = "0.1.10"
|
|
libafl = { path = "../libafl", version = "0.3", features = [] }
|
|
serde = { version = "1.0", default-features = false, features = ["alloc"] } # serialization lib
|
|
serde-big-array = "0.3.2"
|