Files
noq/fuzz/Cargo.toml
Friedel Ziegelmayer 294e3ea603 refactor!: rename to noq (#461)
* refactor!: rename to noq

* fixup python scripts

* fixup

* fixup

* fixup: cr
2026-02-27 14:57:21 +00:00

40 lines
664 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 = "../noq-proto"
package = "noq-proto"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(fuzzing)"] }
[[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