diff options
Diffstat (limited to 'fuzz/Cargo.toml')
-rw-r--r-- | fuzz/Cargo.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml new file mode 100644 index 0000000..b4dcbe1 --- /dev/null +++ b/fuzz/Cargo.toml @@ -0,0 +1,27 @@ + +[package] +name = "html5ever-fuzz" +version = "0.0.0" +authors = ["David Korczynski <david@adalogics.com>"] +publish = false +edition = "2018" + +[package.metadata] +cargo-fuzz = true + +[dependencies] +libfuzzer-sys = "0.3" + +[dependencies.html5ever] +path = ".." + +[dependencies.markup5ever_rcdom] +path = "../../rcdom/" + +# Prevent this from interfering with workspaces +[workspace] +members = ["."] + +[[bin]] +name = "fuzz_document_parse" +path = "fuzz_targets/fuzz_document_parse.rs" |