forked from tokio-rs/mio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (33 loc) · 905 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
[package]
name = "mio"
version = "0.5.0"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = "Lightweight non-blocking IO"
documentation = "http://rustdoc.s3-website-us-east-1.amazonaws.com/mio/v0.5.x/mio/"
homepage = "https://github.com/carllerche/mio"
repository = "https://github.com/carllerche/mio"
readme = "README.md"
keywords = ["io", "async", "non-blocking"]
exclude = [
".gitignore",
".travis.yml",
"deploy.sh",
"test/**/*",
]
[dependencies]
log = "0.3.1"
nix = { git = "https://github.com/carllerche/nix-rust", rev = "c4257f8a76" }
libc = "0.2.4"
slab = "0.1.0"
time = "0.1.33"
bytes = "0.3.0"
winapi = "0.2.1"
miow = "0.1.1"
net2 = { version = "0.2.19", default-features = false }
[dev-dependencies]
env_logger = "0.3.0"
tempdir = "0.3.4"
[[test]]
name = "test"
path = "test/mod.rs"