Files
tokio/Cargo.toml
T

54 lines
1.2 KiB
TOML
Raw Normal View History

2016-09-07 00:13:11 -07:00
[package]
name = "tokio-process"
2018-05-13 17:25:40 -07:00
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
2018-05-16 18:12:17 -07:00
# - Create "X.Y.Z" git tag.
2018-11-01 20:47:40 -07:00
version = "0.2.3"
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" }
codecov = { repository = "alexcrichton/tokio-process" }
2016-09-07 00:13:11 -07:00
[dependencies]
futures = "0.1.11"
mio = "0.6.5"
tokio-io = "0.1"
2018-05-13 14:50:42 -07:00
tokio-reactor = "0.1"
[dev-dependencies]
2018-01-03 09:48:42 -08:00
env_logger = { version = "0.4", default-features = false }
log = "0.4"
2018-05-13 14:56:30 -07:00
tokio = "0.1"
tokio-current-thread = "0.1"
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.2.5"