FRET-LibAFL/Cargo.toml
Dominik Maier 12c470a707
Atheris example to fuzz Python Code (#300)
* 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
2021-11-03 10:13:05 +01:00

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",
]