async-process/Cargo.toml

46 lines
1.1 KiB
TOML
Raw Normal View History

2020-08-18 20:19:25 +00:00
[package]
name = "async-process"
2021-04-24 08:45:31 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
2022-11-27 07:22:13 +00:00
version = "1.6.0"
2020-08-18 20:19:25 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.48"
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"
2020-08-19 13:34:03 +00:00
keywords = ["process", "spawn", "command", "subprocess", "child"]
categories = ["asynchronous", "os"]
2022-01-08 13:03:15 +00:00
exclude = ["/.*"]
2020-08-18 20:19:25 +00:00
[dependencies]
async-lock = "2.6.0"
cfg-if = "1.0"
event-listener = "2.4.0"
2020-10-09 12:37:51 +00:00
futures-lite = "1.11.0"
2020-08-18 20:19:25 +00:00
[build-dependencies]
autocfg = "1"
2020-08-18 20:19:25 +00:00
[target.'cfg(unix)'.dependencies]
async-io = "1.8"
rustix = { version = "0.37", default-features = false, features = ["std", "fs"] }
[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
2022-11-27 05:14:01 +00:00
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.45"
2020-08-19 13:34:03 +00:00
default-features = false
2020-08-18 20:19:25 +00:00
features = [
2022-11-27 05:14:01 +00:00
"Win32_Foundation",
"Win32_System_Threading",
2022-11-27 07:22:13 +00:00
"Win32_System_WindowsProgramming"
]