summaryrefslogtreecommitdiffstats
path: root/benches/Cargo.toml
blob: 3a90943f0598bf19a65a0fba89817f471c1dc70f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "benches"
version = "0.0.0"
publish = false
edition = "2018"

[dependencies]
tokio = { version = "0.3.0", path = "../tokio", features = ["full"] }
bencher = "0.1.5"

[[bench]]
name = "spawn"
path = "spawn.rs"
harness = false

[[bench]]
name = "mpsc"
path = "mpsc.rs"
harness = false

[[bench]]
name = "scheduler"
path = "scheduler.rs"
harness = false


[[bench]]
name = "sync_rwlock"
path = "sync_rwlock.rs"
harness = false

[[bench]]
name = "sync_semaphore"
path = "sync_semaphore.rs"
harness = false