Files
tokio/benches/Cargo.toml
T

53 lines
856 B
TOML
Raw Normal View History

[package]
name = "benches"
version = "0.0.0"
publish = false
edition = "2018"
[dependencies]
tokio = { version = "1.5.0", path = "../tokio", features = ["full"] }
bencher = "0.1.5"
[dev-dependencies]
tokio-util = { version = "0.7.0", path = "../tokio-util", features = ["full"] }
2021-05-09 22:26:20 +09:00
tokio-stream = { path = "../tokio-stream" }
[target.'cfg(unix)'.dependencies]
libc = "0.2.42"
[[bench]]
name = "spawn"
path = "spawn.rs"
harness = false
2020-01-27 23:48:35 -05:00
[[bench]]
2020-11-13 19:30:52 -08:00
name = "sync_mpsc"
path = "sync_mpsc.rs"
2020-01-27 23:48:35 -05:00
harness = false
[[bench]]
2020-11-13 19:30:52 -08:00
name = "rt_multi_threaded"
path = "rt_multi_threaded.rs"
harness = false
[[bench]]
name = "sync_rwlock"
path = "sync_rwlock.rs"
harness = false
[[bench]]
name = "sync_semaphore"
path = "sync_semaphore.rs"
harness = false
[[bench]]
name = "signal"
path = "signal.rs"
harness = false
[[bench]]
name = "fs"
path = "fs.rs"
harness = false