async-process/Cargo.toml

39 lines
935 B
TOML
Raw Normal View History

2020-08-18 20:19:25 +00:00
[package]
name = "async-process"
version = "1.1.0"
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"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/async-process"
homepage = "https://github.com/smol-rs/async-process"
2020-08-19 13:34:03 +00:00
documentation = "https://docs.rs/async-process"
keywords = ["process", "spawn", "command", "subprocess", "child"]
categories = ["asynchronous", "os"]
2020-08-18 20:19:25 +00:00
[dependencies]
cfg-if = "1.0"
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"
libc = "0.2.88"
[target.'cfg(unix)'.dependencies.signal-hook]
version = "0.3.0"
features = ["iterator"]
default-features = false
2020-08-18 20:19:25 +00:00
[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"
2020-08-18 20:19:25 +00:00
]