async-process/Cargo.toml

35 lines
895 B
TOML
Raw Normal View History

2020-08-18 20:19:25 +00:00
[package]
name = "async-process"
2020-10-09 12:38:18 +00:00
version = "1.0.1"
2020-08-18 20:19:25 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
2020-08-19 13:34:03 +00:00
description = "Async interface for working with processes"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/stjepang/async-process"
homepage = "https://github.com/stjepang/async-process"
documentation = "https://docs.rs/async-process"
keywords = ["process", "spawn", "command", "subprocess", "child"]
categories = ["asynchronous", "os"]
readme = "README.md"
2020-08-18 20:19:25 +00:00
[dependencies]
cfg-if = "0.1.10"
event-listener = "2.4.0"
2020-10-09 12:37:51 +00:00
futures-lite = "1.11.0"
once_cell = "1.4.1"
2020-08-18 20:19:25 +00:00
[target.'cfg(unix)'.dependencies]
2020-09-07 13:59:51 +00:00
async-io = "1.0.0"
2020-08-18 20:19:25 +00:00
signal-hook = { version = "0.1.16", default-features = false }
[target.'cfg(windows)'.dependencies]
2020-09-07 13:59:51 +00:00
blocking = "1.0.0"
2020-08-18 20:19:25 +00:00
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.9"
2020-08-19 13:34:03 +00:00
default-features = false
2020-08-18 20:19:25 +00:00
features = [
"winbase",
"winnt",
]