my fork of dmp
Diffstat (limited to 'fuzz/Cargo.toml')
| -rw-r--r-- | fuzz/Cargo.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml new file mode 100644 index 0000000..c809905 --- /dev/null +++ b/fuzz/Cargo.toml @@ -0,0 +1,21 @@ +[package] +name = "diff-match-patch-rs-fuzz" +version = "0.0.0" +publish = false +edition = "2021" + +[package.metadata] +cargo-fuzz = true + +[dependencies] +libfuzzer-sys = "0.4" + +[dependencies.diff-match-patch-rs] +path = ".." + +[[bin]] +name = "fuzz_target" +path = "fuzz_targets/fuzz_target.rs" +test = false +doc = false +bench = false |