
* starting to build fuzzbench harness * fuzzbench updated * fuzzbench example readme * removed dummy files * Intial de-luxe dockerfile added * added to dockerignore * more fuzzbench * dockerfile * final dockerfile fun * fuzzing fixes, switched rand, build fixes * fmt * added dummy fuzzone * silence wrapper output * clippy * logfile fixes * adopt changes to libafl-cc * various fixes
45 lines
950 B
TOML
45 lines
950 B
TOML
[package]
|
|
name = "fuzzbench"
|
|
version = "0.3.2"
|
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
debug = true
|
|
|
|
[build-dependencies]
|
|
cc = { version = "1.0", features = ["parallel"] }
|
|
which = { version = "4.0.2" }
|
|
num_cpus = "1.0"
|
|
|
|
[dependencies]
|
|
libafl = { path = "../../libafl/" }
|
|
libafl_targets = { path = "../../libafl_targets/", features = ["sancov_pcguard_hitcounts", "sancov_cmplog", "libfuzzer"] }
|
|
# TODO Include it only when building cc
|
|
libafl_cc = { path = "../../libafl_cc/" }
|
|
clap = { version = "3.0.0-beta.2", features = ["default"] }
|
|
nix = "0.20.0"
|
|
|
|
[lib]
|
|
name = "fuzzbench"
|
|
crate-type = ["staticlib"]
|
|
|
|
[[bin]]
|
|
# For c binaries
|
|
name = "libafl_cc"
|
|
path = "src/bin/libafl_cc.rs"
|
|
|
|
[[bin]]
|
|
# For cpp binaries
|
|
name = "libafl_cxx"
|
|
path = "src/bin/libafl_cc.rs"
|
|
|