diff options
| author | Edward Barnard | 2017-03-06 21:07:19 +0000 |
|---|---|---|
| committer | Edward Barnard | 2017-03-06 21:07:19 +0000 |
| commit | e322e26b7e8c3dbfcba5c6142ca7559b63fc1652 (patch) | |
| tree | cd80c7ac9c3e170eadf5fc5ab928a77f06e57219 /fuzz/Cargo.toml | |
| parent | 62977a504825f12126aa53c3d5cd8affc95c4a7c (diff) | |
| download | rust-plist-e322e26b7e8c3dbfcba5c6142ca7559b63fc1652.tar.bz2 | |
Fuzz the binary and xml parsers separately.
Diffstat (limited to 'fuzz/Cargo.toml')
| -rw-r--r-- | fuzz/Cargo.toml | 13 |
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" |
