aboutsummaryrefslogtreecommitdiffstats
path: root/fuzz/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/Cargo.toml')
-rw-r--r--fuzz/Cargo.toml13
1 files changed, 11 insertions, 2 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml
index d1935db..b10e0d5 100644
--- a/fuzz/Cargo.toml
+++ b/fuzz/Cargo.toml
@@ -5,13 +5,22 @@ version = "0.0.1"
authors = ["Automatically generated"]
publish = false
+[package.metadata]
+cargo-fuzz = true
+
[dependencies.plist]
path = ".."
+[dependencies.libfuzzer-sys]
+git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
-name = "fuzzer_script_1"
-path = "fuzzers/fuzzer_script_1.rs"
+name = "binary_reader"
+path = "fuzzers/binary_reader.rs"
+
+[[bin]]
+name = "xml_reader"
+path = "fuzzers/xml_reader.rs"