mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-18 09:15:37 +00:00
f13a28921a
This does the rename to iroh-quinn for the 0.11.2 release code.
37 lines
592 B
TOML
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
|