
* build and sys qemu crates * working libafl_qemu_build * libafl_qemu_sys * switch libafl_qemu to use libafl_qemu_sys * fix * use sys * fmt * mmu lookup * fix * autofix * clippy * fix * allow * cl * docker * docker * fix * mem access info in mem hooks * fmt * fix * kill libafl_page_size * fix * clippy * default bindings for docs.rs * macos * fix arm build * fix * plugins * fix * fix fuzzer * Correct PC on breakpoint Co-authored-by: Dominik Maier <domenukk@gmail.com>
42 lines
768 B
TOML
42 lines
768 B
TOML
[workspace]
|
|
members = [
|
|
"libafl",
|
|
"libafl_derive",
|
|
"libafl_cc",
|
|
"libafl_targets",
|
|
"libafl_frida",
|
|
"libafl_qemu",
|
|
"libafl_sugar",
|
|
"libafl_nyx",
|
|
"libafl_concolic/symcc_runtime",
|
|
"libafl_concolic/symcc_libafl",
|
|
"libafl_concolic/test/dump_constraints",
|
|
"libafl_concolic/test/runtime_test",
|
|
"utils/deexit",
|
|
"utils/gramatron/construct_automata",
|
|
"utils/libafl_benches",
|
|
]
|
|
default-members = [
|
|
"libafl",
|
|
"libafl_derive",
|
|
"libafl_cc",
|
|
"libafl_targets",
|
|
]
|
|
exclude = [
|
|
"fuzzers",
|
|
"bindings",
|
|
"scripts",
|
|
"libafl_qemu/libafl_qemu_build",
|
|
"libafl_qemu/libafl_qemu_sys"
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.8.2"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
debug = true
|
|
|