aboutsummaryrefslogtreecommitdiffstats
path: root/fuzz/Cargo.toml
diff options
context:
space:
mode:
authorEdward Barnard2017-03-03 12:11:55 +0000
committerEdward Barnard2017-03-03 14:05:31 +0000
commit4a358659148be6f216a2ed8ea2004b2e744b8fb1 (patch)
tree1637cb3acf3e5cdaf80f24b16bdc9de745b06cbd /fuzz/Cargo.toml
parent061874f8865b9f0f14c3bc5e56f2125520a49c87 (diff)
downloadrust-plist-4a358659148be6f216a2ed8ea2004b2e744b8fb1.tar.bz2
Add cargo fuzz support.
Diffstat (limited to 'fuzz/Cargo.toml')
-rw-r--r--fuzz/Cargo.toml17
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"