lac/fuzz/Cargo.toml
Kamal Tufekcic 7862cb1d9d
All checks were successful
CI / lint (push) Successful in 5s
CI / fuzz-regression (push) Successful in 14s
CI / build (push) Successful in 4s
CI / test (push) Successful in 6m54s
CI / publish (push) Successful in 8s
initial commit
Signed-off-by: Kamal Tufekcic <kamal@lo.sh>
2026-04-23 14:58:32 +03:00

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