
* sort memebers * Building bolts * fixing python, feature flags * Cleanup bolts Cargo.toml * Fix tests * cleanup libafl * removed duplicate examples * Info text * reenable agpl CI * fix impl_serdeany * new fmt * Moved bolts * fix some builds * fix * fix more fixes * serdeany * no_std * Dependency cleanup * Fix docs * Docker * add python bolts bindings * no_std test fix * merge fail * typo fix * add bolts dependency to fuzzers * tiny fixes * merge fun * clippy * link no longer exists * make sure python gets rebuilt * fix pybind * doc fix * remove bolts ref * LibAFL bolts * More info * deprecation notice for launcher * fix python * cargo fmt * fix concolic * fix * clippy * fix libafl_cc * fix tutorial, clippy * fix concolic fuzzer * fix push_stage_harness fuzzer * prelude * fix testcase post-merge * mute clippy
28 lines
610 B
TOML
28 lines
610 B
TOML
[package]
|
|
name = "libfuzzer_windows_asan"
|
|
version = "0.8.2"
|
|
authors = ["Max Ammann <max@maxammann.org>"]
|
|
edition = "2021"
|
|
categories = ["development-tools::testing"]
|
|
|
|
[features]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
debug = true
|
|
|
|
[dependencies]
|
|
libafl = { path = "../../libafl/" }
|
|
libafl_bolts = { path = "../../libafl_bolts/" }
|
|
libafl_targets = { path = "../../libafl_targets/", features = ["libfuzzer", "sancov_pcguard_edges"] }
|
|
libafl_cc = { path = "../../libafl_cc/" }
|
|
|
|
[build-dependencies]
|
|
cc = { version = "1.0" }
|
|
|
|
[lib]
|
|
name = "libfuzzer_windows_asan"
|
|
crate-type = ["staticlib"]
|