async-process/Cargo.toml

41 lines
1004 B
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
version = "1.8.1"
2020-08-18 20:19:25 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
2023-10-08 05:56:48 +00:00
edition = "2021"
2023-06-11 04:20:50 +00:00
rust-version = "1.63"
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 = "3.0.0"
2020-10-09 12:37:51 +00:00
futures-lite = "1.11.0"
2020-08-18 20:19:25 +00:00
[target.'cfg(unix)'.dependencies]
async-io = "1.8"
async-signal = "0.2.3"
rustix = { version = "0.38", default-features = false, features = ["std", "fs"] }
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]
2023-04-03 18:41:02 +00:00
version = "0.48"
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
]
[dev-dependencies]
async-io = "1.8"