mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00
30 lines
455 B
TOML
30 lines
455 B
TOML
[package]
|
|
name = "tokio-stream-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
tokio-test = { path = "../../tokio-test" }
|
|
|
|
[dependencies.tokio-stream]
|
|
path = ".."
|
|
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
|
|
[[bin]]
|
|
name = "fuzz_stream_map"
|
|
path = "fuzz_targets/fuzz_stream_map.rs"
|
|
test = false
|
|
doc = false
|