initial commit
Signed-off-by: Kamal Tufekcic <kamal@lo.sh>
This commit is contained in:
commit
7862cb1d9d
2884 changed files with 16797 additions and 0 deletions
28
fuzz/Cargo.toml
Normal file
28
fuzz/Cargo.toml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue