1[package]
2
3name          = "mio"
4# When releasing to crates.io:
5# - Update html_root_url.
6# - Update CHANGELOG.md.
7# - Update doc URL.
8# - Create git tag
9version       = "0.6.23"
10license       = "MIT"
11authors       = ["Carl Lerche <me@carllerche.com>"]
12description   = "Lightweight non-blocking IO"
13documentation = "https://docs.rs/mio/0.6.23/mio/"
14homepage      = "https://github.com/tokio-rs/mio"
15repository    = "https://github.com/tokio-rs/mio"
16readme        = "README.md"
17keywords      = ["io", "async", "non-blocking"]
18categories    = ["asynchronous"]
19include       = [
20  "Cargo.toml",
21  "LICENSE",
22  "README.md",
23  "CHANGELOG.md",
24  "src/**/*.rs"
25]
26
27[features]
28with-deprecated = []
29default = ["with-deprecated"]
30
31[dependencies]
32log      = "0.4"
33slab     = "0.4.0"
34net2     = "0.2.36"
35iovec    = "0.1.1"
36cfg-if   = "0.1.9"
37
38[target.'cfg(target_os = "fuchsia")'.dependencies]
39fuchsia-zircon = "0.3.2"
40fuchsia-zircon-sys = "0.3.2"
41
42[target.'cfg(unix)'.dependencies]
43libc   = "0.2.54"
44
45[target.'cfg(windows)'.dependencies]
46winapi = "0.2.6"
47miow   = "0.2.2"
48kernel32-sys = "0.2"
49
50[dev-dependencies]
51env_logger = { version = "0.4.0", default-features = false }
52tempdir    = "0.3.4"
53bytes      = "0.3.0"
54
55[[test]]
56name = "test"
57path = "test/mod.rs"
58