
* empty libafl_qemu crate * fuzzbench qemu fuzzer skeleton * emu.run() works without bp * working emu loop * resolve elf symbols * running Qemu fuzzer without coverage * qemu fuzzer with edge coverage * merge into inprocess::GLOBAL_STATE * create QemuExecutor and remove QemuEmulator * qemu hooks and persist edges mapping storing them in State * windows fix * add libafl_qemu to workspace * windows fix * some clippy * clippy * fix fuzzbench_qemu * fix fuzzbench_qemu makefile * fuck you macos
27 lines
379 B
TOML
27 lines
379 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_tests",
|
|
]
|
|
default-members = [
|
|
"libafl",
|
|
"libafl_derive",
|
|
"libafl_cc",
|
|
"libafl_targets",
|
|
"libafl_tests",
|
|
]
|
|
exclude = [
|
|
"fuzzers",
|
|
]
|