28 lines
520 B
TOML
28 lines
520 B
TOML
[package]
|
|
name = "lac-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2024"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
lac = { path = ".." }
|
|
|
|
# Required by cargo-fuzz: prevents libtest from running the fuzz targets
|
|
# as regular integration tests.
|
|
[[bin]]
|
|
name = "decode_arbitrary"
|
|
path = "fuzz_targets/decode_arbitrary.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "roundtrip_arbitrary"
|
|
path = "fuzz_targets/roundtrip_arbitrary.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|