
* Build cargo-fuzz end to end * Workaroudn failing CI * Fix toml * Build * Exclude from workspace * Fix version * Fix workspace * Fix workspace * FIx workspace * Fix path * Set path correctly * Install llvm-tools * Test with distro llvm installed * Use build * complete * remove from includes * add back fuzzer tests, format * add test for whether all fuzzers are actually tested in pipeline * whoops * I hate CI I hate CI I hate CI * revert removal of llvm * sh compatibility * sigh --------- Co-authored-by: Max Ammann <max@maxammann.org>
27 lines
397 B
TOML
27 lines
397 B
TOML
[package]
|
|
name = "libafl-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
|
|
[dependencies.cargo_fuzz_test]
|
|
path = ".."
|
|
|
|
[dependencies.libfuzzer-sys]
|
|
path = "../../../libafl_libfuzzer"
|
|
package = "libafl_libfuzzer"
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_1"
|
|
path = "fuzz_targets/fuzz_target_1.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|