Define a fuzz target for the parser

This commit is contained in:
Nick Fitzgerald
2021-09-28 15:54:01 -07:00
committed by Chris Fallin
parent cfaa35d8c0
commit 825258939b
5 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
[package]
name = "isle-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
isle = { path = "../isle" }
libfuzzer-sys = "0.4"
[[bin]]
name = "parse"
path = "fuzz_targets/parse.rs"
test = false
doc = false