json/fuzz/Cargo.toml

21 lines
370 B
TOML

[package]
name = "serde_json-fuzz"
version = "0.0.0"
authors = ["David Korczynski <david@adalogics.com>"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
serde_json = { path = ".." }
[[bin]]
name = "from_slice"
path = "fuzz_targets/from_slice.rs"
# Prevent this from interfering with workspaces
[workspace]