[build-dependencies.cc]
version = "1.0"
[package]
authors = ["dylni"]
categories = ["concurrency", "os"]
description = "Methods for ergonomically running processes with timeouts\n"
edition = "2018"
exclude = [".*", "/rustfmt.toml", "/tests"]
keywords = ["kill", "process", "terminate", "timeout", "wait"]
license = "MIT OR Apache-2.0"
name = "process_control"
readme = "README.md"
repository = "https://github.com/dylni/process_control"
version = "2.0.1"
[package.metadata.docs.rs]
rustc-args = ["--cfg", "process_control_docs_rs"]
rustdoc-args = ["--cfg", "process_control_docs_rs", "--extern-html-root-url", "std=https://doc.rust-lang.org", "-Z unstable-options"]
[target."cfg(unix)".dependencies.crossbeam-channel]
optional = true
version = "0.4"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.winapi]
features = ["handleapi", "processthreadsapi", "synchapi", "winbase", "winerror"]
version = "0.3"