mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-07 00:00:09 +02:00
This allows the `benches` crate to depend on `tokio` with all feature flags. This is a similar strategy used for `examples`.
15 lines
242 B
TOML
15 lines
242 B
TOML
[package]
|
|
name = "benches"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tokio = { version = "0.2.0", path = "../tokio", features = ["full"] }
|
|
bencher = "0.1.5"
|
|
|
|
[[bench]]
|
|
name = "spawn"
|
|
path = "spawn.rs"
|
|
harness = false
|