mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-23 03:35:14 +00:00
36 lines
612 B
TOML
36 lines
612 B
TOML
[package]
|
|
name = "quinn-fuzz"
|
|
version = "0.0.0"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
arbitrary = { version = "0.4.5", features = ["derive"] }
|
|
libfuzzer-sys = "0.3"
|
|
|
|
[dependencies.proto]
|
|
features = ["arbitrary"]
|
|
path = "../quinn-proto"
|
|
package = "quinn-proto"
|
|
version = "0.6.1"
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "streams"
|
|
path = "fuzz_targets/streams.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "streamid"
|
|
path = "fuzz_targets/streamid.rs"
|
|
test = false
|
|
doc = false
|