[package] name = "fuzzbench" version = "0.13.0" authors = ["Andrea Fioraldi ", "Dominik Maier "] edition = "2021" [features] default = ["std"] std = [] no_link_main = ["libafl_targets/libfuzzer_no_link_main"] [profile.release] lto = true codegen-units = 1 opt-level = 3 debug = true [profile.release-fuzzbench] inherits = "release" debug = false strip = true [build-dependencies] cc = { version = "1.0", features = ["parallel"] } which = "6.0" [dependencies] libafl = { path = "../../libafl/" } libafl_bolts = { path = "../../libafl_bolts/" } 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 = "4.0", features = ["default"] } nix = { version = "0.29", features = ["fs"] } mimalloc = { version = "*", default-features = false } [lib] name = "fuzzbench" crate-type = ["staticlib"]