mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-28 00:00:11 +02:00
30 lines
462 B
TOML
30 lines
462 B
TOML
[package]
|
|
name = "tokio-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
|
|
[dependencies.tokio]
|
|
path = ".."
|
|
features = ["fs","net","process","rt","sync","signal","time"]
|
|
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
|
|
[[bin]]
|
|
name = "fuzz_linked_list"
|
|
path = "fuzz_targets/fuzz_linked_list.rs"
|
|
test = false
|
|
doc = false
|