FRET-LibAFL/Cargo.toml
julihoh 1dddf7e677
Separate symcc crate (#244)
* create a separate crate for symcc url and commit hash

also contains functions to checkout and build symcc from a build script

* fix dockerfile

* clippy
2021-08-05 21:57:39 +02:00

32 lines
558 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_tests",
"libafl_concolic/symcc_runtime",
"libafl_concolic/symcc_libafl",
"libafl_concolic/test/dump_constraints",
"libafl_concolic/test/runtime_test",
]
default-members = [
"libafl",
"libafl_derive",
"libafl_cc",
"libafl_targets",
"libafl_tests",
]
exclude = [
"fuzzers",
]