-
Notifications
You must be signed in to change notification settings - Fork 29
/
Cargo.toml
52 lines (43 loc) · 1.42 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "async-process"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v2.x.y" git tag
version = "2.3.0"
authors = ["Stjepan Glavina <[email protected]>"]
edition = "2021"
rust-version = "1.63"
description = "Async interface for working with processes"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/async-process"
keywords = ["process", "spawn", "command", "subprocess", "child"]
categories = ["asynchronous", "os"]
exclude = ["/.*"]
[dependencies]
async-lock = "3.0.0"
async-io = "2.1.0"
cfg-if = "1.0"
event-listener = "5.1.0"
futures-lite = "2.0.0"
tracing = { version = "0.1.40", default-features = false }
[target.'cfg(unix)'.dependencies]
async-signal = "0.2.3"
rustix = { version = "0.38", default-features = false, features = ["std", "fs"] }
[target.'cfg(any(windows, target_os = "linux"))'.dependencies]
async-channel = "2.0.0"
async-task = "4.7.0"
[target.'cfg(all(unix, not(target_os = "linux")))'.dependencies]
rustix = { version = "0.38", default-features = false, features = ["std", "fs", "process"] }
[target.'cfg(windows)'.dependencies]
blocking = "1.0.0"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(async_process_force_signal_backend)'] }
[dev-dependencies]
async-executor = "1.5.1"
[target.'cfg(windows)'.dev-dependencies.windows-sys]
version = "0.59"
default-features = false
features = [
"Win32_Foundation",
"Win32_System_Threading",
]