
* sort memebers * Building bolts * fixing python, feature flags * Cleanup bolts Cargo.toml * Fix tests * cleanup libafl * removed duplicate examples * Info text * reenable agpl CI * fix impl_serdeany * new fmt * Moved bolts * fix some builds * fix * fix more fixes * serdeany * no_std * Dependency cleanup * Fix docs * Docker * add python bolts bindings * no_std test fix * merge fail * typo fix * add bolts dependency to fuzzers * tiny fixes * merge fun * clippy * link no longer exists * make sure python gets rebuilt * fix pybind * doc fix * remove bolts ref * LibAFL bolts * More info * deprecation notice for launcher * fix python * cargo fmt * fix concolic * fix * clippy * fix libafl_cc * fix tutorial, clippy * fix concolic fuzzer * fix push_stage_harness fuzzer * prelude * fix testcase post-merge * mute clippy
47 lines
884 B
TOML
47 lines
884 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"libafl",
|
|
"libafl_bolts",
|
|
"libafl_cc",
|
|
"libafl_concolic/symcc_runtime",
|
|
"libafl_concolic/symcc_libafl",
|
|
"libafl_concolic/test/dump_constraints",
|
|
"libafl_concolic/test/runtime_test",
|
|
"libafl_derive",
|
|
"libafl_frida",
|
|
"libafl_nyx",
|
|
"libafl_qemu",
|
|
"libafl_sugar",
|
|
"libafl_targets",
|
|
"libafl_tinyinst",
|
|
"utils/build_and_test_fuzzers",
|
|
"utils/deexit",
|
|
"utils/libafl_benches",
|
|
"utils/gramatron/construct_automata",
|
|
]
|
|
default-members = [
|
|
"libafl",
|
|
"libafl_bolts",
|
|
"libafl_cc",
|
|
"libafl_derive",
|
|
"libafl_targets",
|
|
]
|
|
exclude = [
|
|
"bindings",
|
|
"fuzzers",
|
|
"libafl_qemu/libafl_qemu_build",
|
|
"libafl_qemu/libafl_qemu_sys",
|
|
"scripts",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.10.1"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
debug = true
|
|
|