-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
33 lines (28 loc) · 1.16 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
[package]
name = "process_control"
version = "5.0.0"
authors = ["dylni"]
edition = "2021"
rust-version = "1.75.0"
description = """
Ergonomically run processes with limits
"""
readme = "README.md"
repository = "https://github.com/dylni/process_control"
license = "MIT OR Apache-2.0"
keywords = ["kill", "process", "terminate", "timeout", "wait"]
categories = ["concurrency", "os"]
exclude = [".*", "tests.rs", "/rustfmt.toml", "/src/bin", "/tests"]
[package.metadata.docs.rs]
all-features = true
rustc-args = ["--cfg", "process_control_docs_rs"]
rustdoc-args = ["--cfg", "process_control_docs_rs"]
[target.'cfg(unix)'.dependencies]
libc = "0.2.120"
[target.'cfg(all(unix, any(target_os = "espidf", target_os = "horizon", target_os = "openbsd", target_os = "redox", target_os = "tvos", target_os = "vxworks")))'.dependencies]
parking_lot = { version = "0.12", optional = true }
signal-hook = "0.3"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_Foundation", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_JobObjects", "Win32_System_IO", "Win32_System_Threading"] }
[target.'cfg(windows)'.dev-dependencies]
rustversion = "1.0"