
* initial atheris libfuzzer harness * cmplog, kinda * added makefile to generic_inmemory * Makefile for atheris fuzzer * moved away from clap yaml * fixed arg parsing * fuzzing * ldpreload lib to replace exit with abort * fixed docker, docs * fix docker some more * better documentation * less commented out important things * Make makefile less crashy
33 lines
569 B
TOML
33 lines
569 B
TOML
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
debug = true
|
|
|
|
[workspace]
|
|
members = [
|
|
"libafl",
|
|
"libafl_derive",
|
|
"libafl_cc",
|
|
"libafl_targets",
|
|
"libafl_frida",
|
|
"libafl_qemu",
|
|
"libafl_sugar",
|
|
"libafl_concolic/symcc_runtime",
|
|
"libafl_concolic/symcc_libafl",
|
|
"libafl_concolic/test/dump_constraints",
|
|
"libafl_concolic/test/runtime_test",
|
|
"utils/deexit",
|
|
]
|
|
default-members = [
|
|
"libafl",
|
|
"libafl_derive",
|
|
"libafl_cc",
|
|
"libafl_targets",
|
|
]
|
|
exclude = [
|
|
"fuzzers",
|
|
"bindings",
|
|
"scripts",
|
|
]
|