mirror of
https://github.com/openharmony/third_party_rust_http.git
synced 2026-07-01 20:44:03 -04:00
23 lines
412 B
TOML
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]
|