mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-18 00:00:09 +02:00
47 lines
1.0 KiB
TOML
47 lines
1.0 KiB
TOML
[package]
|
|
name = "tokio-process"
|
|
version = "0.1.5"
|
|
authors = ["Alex Crichton <[email protected]>"]
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/alexcrichton/tokio-process"
|
|
homepage = "https://github.com/alexcrichton/tokio-process"
|
|
documentation = "https://docs.rs/tokio-process"
|
|
description = """
|
|
An implementation of an asynchronous process management backed futures.
|
|
"""
|
|
categories = ["asynchronous"]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "alexcrichton/tokio-process" }
|
|
appveyor = { repository = "alexcrichton/tokio-process" }
|
|
|
|
[dependencies]
|
|
futures = "0.1.11"
|
|
mio = "0.6.5"
|
|
tokio-core = "0.1.6"
|
|
tokio-io = "0.1"
|
|
|
|
[dev-dependencies]
|
|
env_logger = { version = "0.4", default-features = false }
|
|
log = "0.4"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
mio-named-pipes = "0.1"
|
|
|
|
[target.'cfg(windows)'.dependencies.winapi]
|
|
version = "0.3"
|
|
features = [
|
|
"handleapi",
|
|
"winerror",
|
|
"minwindef",
|
|
"processthreadsapi",
|
|
"synchapi",
|
|
"threadpoollegacyapiset",
|
|
"winbase",
|
|
"winnt",
|
|
]
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
tokio-signal = "0.1"
|