1 | [package] |
2 | name = "async-process" |
3 | # When publishing a new version: |
4 | # - Update CHANGELOG.md |
5 | # - Create "v2.x.y" git tag |
6 | version = "2.1.0" |
7 | authors = ["Stjepan Glavina <stjepang@gmail.com>" ] |
8 | edition = "2021" |
9 | rust-version = "1.63" |
10 | description = "Async interface for working with processes" |
11 | license = "Apache-2.0 OR MIT" |
12 | repository = "https://github.com/smol-rs/async-process" |
13 | keywords = ["process" , "spawn" , "command" , "subprocess" , "child" ] |
14 | categories = ["asynchronous" , "os" ] |
15 | exclude = ["/.*" ] |
16 | |
17 | [dependencies] |
18 | async-lock = "3.0.0" |
19 | cfg-if = "1.0" |
20 | event-listener = "5.1.0" |
21 | futures-lite = "2.0.0" |
22 | |
23 | [target.'cfg(unix)'.dependencies] |
24 | async-io = "2.1.0" |
25 | async-signal = "0.2.3" |
26 | rustix = { version = "0.38" , default-features = false, features = ["std" , "fs" ] } |
27 | |
28 | [target.'cfg(windows)'.dependencies] |
29 | async-channel = "2.0.0" |
30 | blocking = "1.0.0" |
31 | |
32 | [target.'cfg(windows)'.dependencies.windows-sys] |
33 | version = "0.52" |
34 | default-features = false |
35 | features = [ |
36 | "Win32_Foundation" , |
37 | "Win32_System_Threading" , |
38 | ] |
39 | |
40 | [dev-dependencies] |
41 | async-executor = "1.5.1" |
42 | async-io = "2.1.0" |
43 | |