initial commit
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

Signed-off-by: Kamal Tufekcic <kamal@lo.sh>
This commit is contained in:
Kamal Tufekcic 2026-04-23 14:58:32 +03:00
commit 7862cb1d9d
No known key found for this signature in database
2884 changed files with 16797 additions and 0 deletions

28
fuzz/Cargo.toml Normal file
View file

@ -0,0 +1,28 @@
[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