Files
noq/fuzz/Cargo.toml
T
Floris Bruynooghe f13a28921a Rename to iroh-quinn
This does the rename to iroh-quinn for the 0.11.2 release code.
2024-06-21 13:00:40 +02:00

37 lines
592 B
TOML

[package]
name = "fuzz"
version = "0.1.0"
publish = false
license = "MIT OR Apache-2.0"
edition = "2021"
[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 = "iroh-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