Files
tokio/Cargo.toml
T

47 lines
1.0 KiB
TOML
Raw Normal View History

2016-09-07 00:13:11 -07:00
[package]
name = "tokio-process"
2018-01-03 09:48:53 -08:00
version = "0.1.5"
2016-09-07 00:13:11 -07:00
authors = ["Alex Crichton <[email protected]>"]
2016-09-07 13:05:39 -07:00
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/tokio-process"
homepage = "https://github.com/alexcrichton/tokio-process"
2017-01-24 11:09:00 -08:00
documentation = "https://docs.rs/tokio-process"
2016-09-07 13:05:39 -07:00
description = """
An implementation of an asynchronous process management backed futures.
"""
2017-01-24 11:09:00 -08:00
categories = ["asynchronous"]
[badges]
travis-ci = { repository = "alexcrichton/tokio-process" }
appveyor = { repository = "alexcrichton/tokio-process" }
2016-09-07 00:13:11 -07:00
[dependencies]
futures = "0.1.11"
mio = "0.6.5"
tokio-core = "0.1.6"
tokio-io = "0.1"
[dev-dependencies]
2018-01-03 09:48:42 -08:00
env_logger = { version = "0.4", default-features = false }
log = "0.4"
2016-09-07 00:13:11 -07:00
2016-09-07 12:04:46 -07:00
[target.'cfg(windows)'.dependencies]
mio-named-pipes = "0.1"
2016-09-07 12:04:46 -07:00
2018-01-03 09:46:41 -08:00
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = [
"handleapi",
"winerror",
"minwindef",
"processthreadsapi",
"synchapi",
"threadpoollegacyapiset",
"winbase",
"winnt",
]
2016-09-07 00:13:11 -07:00
[target.'cfg(unix)'.dependencies]
libc = "0.2"
tokio-signal = "0.1"