From b3a921c761309ae00a51fe348d8a43adbc54b518 Mon Sep 17 00:00:00 2001 From: Christian Murphy Date: Sat, 1 Apr 2023 03:09:26 -0700 Subject: Add `honggfuzz` as an alternative fuzzer Closes GH-55. Reviewed-by: Titus Wormer --- fuzz/Cargo.toml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'fuzz/Cargo.toml') diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index c8f9850..6a50fd2 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -10,6 +10,7 @@ cargo-fuzz = true [dependencies] libfuzzer-sys = "0.4" +honggfuzz = "0.5" [dependencies.markdown] path = ".." @@ -19,7 +20,13 @@ path = ".." members = ["."] [[bin]] -name = "markdown" -path = "fuzz_targets/markdown.rs" +name = "markdown_libfuzz" +path = "fuzz_targets/markdown_libfuzz.rs" test = false doc = false + +[[bin]] +name = "markdown_honggfuzz" +path = "fuzz_targets/markdown_honggfuzz.rs" +test = false +doc = false \ No newline at end of file -- cgit