
* Adding DrCov for qemu * Fixing cargo fmt * Trying to fix maturin build * Fixing clippy * libafl_qemu --no-default-features fix * Adding make module mapping a user input as suggested from @WorksButNotTested * Switching from blocks_raw() -> blocks() and full_tracing as an option * Avoiding get before get_mut * HashSet to Vec * Avoiding lazy_static * Adding DrCov for example fuzzer qemu_arm_launcher * Removing mut for globals in DrCov * Using emu.mappings() for drcov module mappings * Fixing clippy Co-authored-by: Dominik Maier <domenukk@gmail.com> Co-authored-by: Andrea Fioraldi <andreafioraldi@gmail.com> Co-authored-by: Dongjia "toka" Zhang <tokazerkje@outlook.com>
21 lines
433 B
TOML
21 lines
433 B
TOML
[package]
|
|
name = "qemu_arm_launcher"
|
|
version = "0.8.2"
|
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[profile.release]
|
|
#lto = true
|
|
#codegen-units = 1
|
|
#opt-level = 3
|
|
debug = true
|
|
|
|
[dependencies]
|
|
libafl = { path = "../../libafl/" }
|
|
libafl_qemu = { path = "../../libafl_qemu/", features = ["arm", "usermode"] }
|
|
rangemap = "1.0.3"
|