forked from dpc/mioco.pre-0.9
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (39 loc) · 944 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
[package]
name = "mioco"
version = "0.8.1"
authors = ["Dawid Ciężarkiewicz <dpc@dpc.pw>"]
description = "Scalable, asynchronous IO coroutine-based handling (aka MIO COroutines)."
keywords = ["mio", "asynchronous", "coroutine", "async", "fiber"]
license = "MPL-2.0"
documentation = "https://dpc.github.io/mioco/"
homepage = "https://github.com/dpc/mioco"
repository = "https://github.com/dpc/mioco"
readme = "README.md"
[profile.release]
opt-level = 3
debug = false
lto = true
debug-assertions = false
[lib]
name = "mioco"
path = "lib.rs"
[features]
default=[]
[dependencies]
nix = "0.6.0"
log = "0.3.5"
spin = { version = "0.4.3", default-features=false }
time = "0.1.34"
mio = "0.5.1"
num_cpus = "1.0.0"
libc = "0.2.15"
thread-scoped = "1.0.0"
context = "1.0.0"
slab = "0.2.0"
clippy = {version = "0.0.85", optional = true}
owning_ref = "0.2.0"
[dev-dependencies]
env_logger = "0.3.2"
httparse = "1.1.1"
net2 = "0.2.26"
rand = "0.3.14"