
* Start on qemu_tmin * WIP * qemu_tmin working for single testcase. Also some comment improvements. * Add env_logger to baby_fuzzer * Remove old reference. * Added comment doc for qemu_tmin. * Slight reorder for parallelisation * Finished single-thread qemu_tmin * Finishing touches to single thread version. * A pre_commit.sh change I didn't notice. * Duplicate to attempt multi-threaded version * Fix taplo whine. Mark "fork" mode as broken. * Launcher for parallelisation implemented, but for one core. * Running in parallel. Now need tidy up. * Parallel version complete. * Add comment * Merged single-core/multi-core qemu_tmin into one crate * Removed forkexecutor mode. * Precommit fixes * Add qemu_tmin to build_and_test.yml * Clippy fixes * Change tmin test cores to 0.
30 lines
561 B
TOML
30 lines
561 B
TOML
[package]
|
|
name = "baby_fuzzer"
|
|
version = "0.14.1"
|
|
authors = [
|
|
"Andrea Fioraldi <andreafioraldi@gmail.com>",
|
|
"Dominik Maier <domenukk@gmail.com>",
|
|
]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
tui = []
|
|
std = []
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
debug = true
|
|
|
|
[dependencies]
|
|
env_logger = "0.11.7"
|
|
libafl = { path = "../../../libafl", features = ["tui_monitor"] }
|
|
libafl_bolts = { path = "../../../libafl_bolts" }
|
|
log = { version = "0.4.22", features = ["release_max_level_info"] }
|