10
0
Fork 0
mirror of https://github.com/ZeusWPI/ZNS.git synced 2024-10-30 13:34:26 +01:00
zns/fuzz/Cargo.toml

27 lines
415 B
TOML
Raw Normal View History

2024-10-09 19:23:49 +02:00
[package]
name = "zns-fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
zns = {path = "../zns", features = ["arbitrary"]}
[[bin]]
name = "parser"
path = "fuzz_targets/parser.rs"
test = false
doc = false
bench = false
2024-10-29 22:18:41 +01:00
[[bin]]
name = "parser_to_bytes"
path = "fuzz_targets/parser_to_bytes.rs"
test = false
doc = false
bench = false