
* initial commit: multipart * document + wrap up baby fuzzer * oops * core * add from method, option to iter * improve example; use minmap; fix initial_mut * bindings * clippy, again * moar clippy * fmt * drop rand dep because we don't need it, actually * docfix * ok actually fix docs pls
25 lines
511 B
TOML
25 lines
511 B
TOML
[package]
|
|
name = "baby_fuzzer_multi"
|
|
version = "0.10.0"
|
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>", "Addison Crump <me@addisoncrump.info>"]
|
|
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]
|
|
libafl = { path = "../../libafl/", features = ["multipart_inputs"] }
|
|
libafl_bolts = { path = "../../libafl_bolts/" }
|