bencode inspired tight self describing serialization format
Diffstat (limited to 'fuzz/Cargo.toml')
| -rw-r--r-- | fuzz/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml new file mode 100644 index 0000000..08ae682 --- /dev/null +++ b/fuzz/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "serde_json-fuzz" +version = "0.0.0" +authors = ["David Tolnay <[email protected]>"] +edition = "2021" +publish = false + +[package.metadata] +cargo-fuzz = true + +[dependencies] +libfuzzer-sys = "0.4" +bendncode = { path = ".." } +serde_json = "1.0.150" + +[[bin]] +name = "from_slice" +path = "fuzz_targets/from_slice.rs" +test = false +doc = false |