From 640c103c0a2b92f7f2a49cfc0721577f40aa90e0 Mon Sep 17 00:00:00 2001 From: Christian Murphy Date: Mon, 12 Sep 2022 01:01:11 -0700 Subject: Add fuzz testing Closes GH-7. --- fuzz/Cargo.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 fuzz/Cargo.toml (limited to 'fuzz/Cargo.toml') diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml new file mode 100644 index 0000000..3c19003 --- /dev/null +++ b/fuzz/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "micromark-fuzz" +version = "0.0.0" +authors = ["Automatically generated"] +publish = false +edition = "2018" + +[package.metadata] +cargo-fuzz = true + +[dependencies] +libfuzzer-sys = "0.4" + +[dependencies.micromark] +path = ".." + +# Prevent this from interfering with workspaces +[workspace] +members = ["."] + +[[bin]] +name = "micromark" +path = "fuzz_targets/micromark.rs" +test = false +doc = false -- cgit