mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-12 06:20:48 +00:00
294e3ea603
* refactor!: rename to noq * fixup python scripts * fixup * fixup * fixup: cr
40 lines
664 B
TOML
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
|