-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
43 lines (39 loc) · 894 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
[package]
edition = "2021"
license-file = "LICENSE"
name = "executor"
version = "0.1.0"
[dependencies]
async-task = "4"
criterion = { version = "0.3", features = ["async"] }
crossbeam-deque = "0.8"
crossbeam-queue = "0.3"
event-listener = "5"
futures-lite = "2"
futures-util = "0.3"
libc = { version = "0.2" }
mio = { version = "0.8", features = ["net", "os-ext", "os-poll"] }
pin-project-lite = "0.2"
piper = "0.2"
slab = "0.4"
socket2 = { version = "0.5", features = ["all"] }
tokio = { version = "1", features = ["io-util"] }
tracing = "0.1"
waker-fn = "1"
[dev-dependencies]
hyper = { version = "0.14", features = [
"client",
"http1",
"http2",
"server",
"tcp",
] }
tempfile = "3"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["compat"] }
unsend = "0.2"
[[example]]
name = "hyper"
[[bench]]
harness = false
name = "tokio"