diff options
| author | Edward Barnard | 2017-03-03 12:11:55 +0000 |
|---|---|---|
| committer | Edward Barnard | 2017-03-03 14:05:31 +0000 |
| commit | 4a358659148be6f216a2ed8ea2004b2e744b8fb1 (patch) | |
| tree | 1637cb3acf3e5cdaf80f24b16bdc9de745b06cbd /fuzz/Cargo.toml | |
| parent | 061874f8865b9f0f14c3bc5e56f2125520a49c87 (diff) | |
| download | rust-plist-4a358659148be6f216a2ed8ea2004b2e744b8fb1.tar.bz2 | |
Add cargo fuzz support.
Diffstat (limited to 'fuzz/Cargo.toml')
| -rw-r--r-- | fuzz/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml new file mode 100644 index 0000000..d1935db --- /dev/null +++ b/fuzz/Cargo.toml @@ -0,0 +1,17 @@ + +[package] +name = "plist-fuzz" +version = "0.0.1" +authors = ["Automatically generated"] +publish = false + +[dependencies.plist] +path = ".." + +# Prevent this from interfering with workspaces +[workspace] +members = ["."] + +[[bin]] +name = "fuzzer_script_1" +path = "fuzzers/fuzzer_script_1.rs" |
