Files
tokio/Cargo.toml
T

24 lines
746 B
TOML
Raw Normal View History

2016-09-07 00:13:11 -07:00
[package]
name = "tokio-process"
version = "0.1.0"
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"
documentation = "https://alexcrichton.github.io/tokio-process"
description = """
An implementation of an asynchronous process management backed futures.
"""
2016-09-07 00:13:11 -07:00
[dependencies]
tokio-core = { git = "https://github.com/tokio-rs/tokio-core" }
futures = { git = "https://github.com/alexcrichton/futures-rs" }
2016-09-07 12:04:46 -07:00
[target.'cfg(windows)'.dependencies]
winapi = "0.2"
kernel32-sys = "0.2"
2016-09-07 00:13:11 -07:00
[target.'cfg(unix)'.dependencies]
libc = "0.2"
tokio-signal = { git = "https://github.com/alexcrichton/tokio-signal" }