
* 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.
52 lines
1.2 KiB
TOML
52 lines
1.2 KiB
TOML
[package]
|
|
name = "qemu_tmin"
|
|
version = "0.15.1"
|
|
authors = [
|
|
"Andrea Fioraldi <andreafioraldi@gmail.com>",
|
|
"Dominik Maier <domenukk@gmail.com>",
|
|
"WorksButNotTested",
|
|
"forky2",
|
|
]
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
#lto = true
|
|
#codegen-units = 1
|
|
#opt-level = 3
|
|
debug = true
|
|
|
|
[[bin]]
|
|
name = "tmin_single_core"
|
|
path = "src/tmin_single_core.rs"
|
|
|
|
[[bin]]
|
|
name = "tmin_multi_core"
|
|
path = "src/tmin_multi_core.rs"
|
|
|
|
[features]
|
|
default = ["std", "snapshot"]
|
|
fork = []
|
|
snapshot = []
|
|
std = []
|
|
be = ["libafl_qemu/be"]
|
|
arm = ["libafl_qemu/arm"]
|
|
x86_64 = ["libafl_qemu/x86_64"]
|
|
i386 = ["libafl_qemu/i386"]
|
|
aarch64 = ["libafl_qemu/aarch64"]
|
|
mips = ["libafl_qemu/mips"]
|
|
ppc = ["libafl_qemu/ppc", "be"]
|
|
|
|
[build-dependencies]
|
|
vergen = { version = "9.0.1", features = ["build", "cargo", "rustc", "si"] }
|
|
vergen-git2 = "1.0.1"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.18", features = ["derive", "string"] }
|
|
env_logger = { version = "0.11.5" }
|
|
libafl = { path = "../../../libafl" }
|
|
libafl_bolts = { path = "../../../libafl_bolts" }
|
|
libafl_qemu = { path = "../../../libafl_qemu", features = ["usermode"] }
|
|
libafl_targets = { path = "../../../libafl_targets" }
|
|
log = { version = "0.4.22", features = ["release_max_level_info"] }
|
|
rangemap = { version = "1.5.1" }
|