Files
noq/fuzz/Cargo.toml
T
Dirkjan Ochtman 72b99b0372 Drop authors from Cargo manifests
Following RFC 3052.
2021-10-07 09:47:04 +02:00

37 lines
587 B
TOML

[package]
name = "fuzz"
version = "0.1.0"
publish = false
license = "MIT OR Apache-2.0"
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
arbitrary = { version = "1.0.1", features = ["derive"] }
libfuzzer-sys = "0.4.2"
[dependencies.proto]
features = ["arbitrary"]
path = "../quinn-proto"
package = "quinn-proto"
[[bin]]
name = "streams"
path = "fuzz_targets/streams.rs"
test = false
doc = false
[[bin]]
name = "streamid"
path = "fuzz_targets/streamid.rs"
test = false
doc = false
[[bin]]
name = "packet"
path = "fuzz_targets/packet.rs"
test = false
doc = false