Files
tokio/Cargo.toml
T

30 lines
721 B
TOML
Raw Normal View History

2016-09-07 00:13:11 -07:00
[package]
name = "tokio-process"
2016-12-19 08:14:40 -08:00
version = "0.1.1"
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"
2016-12-19 00:44:22 -08:00
documentation = "https://docs.rs/tokio-process/0.2"
2016-09-07 13:05:39 -07:00
description = """
An implementation of an asynchronous process management backed futures.
"""
2016-09-07 00:13:11 -07:00
[dependencies]
2016-12-19 00:40:00 -08:00
tokio-core = "0.1.2"
futures = "0.1.7"
2016-11-18 20:57:31 +01:00
mio = "0.6"
2016-12-04 18:47:48 +01:00
log = "0.3"
[dev-dependencies]
env_logger = { version = "0.3", default-features = false }
2016-09-07 00:13:11 -07:00
2016-09-07 12:04:46 -07:00
[target.'cfg(windows)'.dependencies]
winapi = "0.2"
kernel32-sys = "0.2"
mio-named-pipes = "0.1"
2016-09-07 12:04:46 -07:00
2016-09-07 00:13:11 -07:00
[target.'cfg(unix)'.dependencies]
libc = "0.2"
tokio-signal = "0.1"