mirror of
https://github.com/ZeusWPI/ZNS.git
synced 2024-10-30 05:24:26 +01:00
26 lines
415 B
TOML
26 lines
415 B
TOML
[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
|
|
|
|
[[bin]]
|
|
name = "parser_to_bytes"
|
|
path = "fuzz_targets/parser_to_bytes.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|