-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCargo.toml
51 lines (43 loc) · 897 Bytes
/
Cargo.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "yatp"
version = "0.0.1"
authors = ["The TiKV Authors"]
edition = "2018"
description = ""
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/tikv/yatp/"
[dependencies]
crossbeam-deque = "0.8.3"
crossbeam-skiplist = "0.1"
crossbeam-utils = "0.8"
dashmap = "5.1"
fail = "0.5"
lazy_static = "1"
num_cpus = "1.0"
parking_lot_core = "0.9"
prometheus = { version = "0.13", default-features = false }
rand = "0.8"
[features]
failpoints = ["fail/failpoints"]
[dev-dependencies]
criterion = "0.5"
tokio = { version = "1.0", features = ["sync", "rt-multi-thread"] }
async-std = "1.0"
threadpool = "1.0"
futures-timer = "3"
[[bench]]
name = "spawn_many"
harness = false
[[bench]]
name = "yield_many"
harness = false
[[bench]]
name = "chained_spawn"
harness = false
[[bench]]
name = "ping_pong"
harness = false
[profile.bench]
codegen-units = 1
debug = true