Files
2021-04-10 08:43:59 -07:00

23 lines
412 B
TOML

[package]
name = "http-fuzz"
version = "0.0.0"
authors = ["David Korczynski <david@adalogics.com>"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
arbitrary = { version = "1", features = ["derive"] }
libfuzzer-sys = { version = "0.4.0", features = ["arbitrary-derive"] }
[dependencies.http]
path = ".."
[[bin]]
name = "fuzz_http"
path = "src/fuzz_http.rs"
[workspace]