process_control 2.0.1

Methods for ergonomically running processes with timeouts
[package]
name = "process_control"
version = "2.0.1"
authors = ["dylni"]
edition = "2018"
exclude = [".*", "/rustfmt.toml", "/tests"]
description = """
Methods for ergonomically running processes with timeouts
"""
repository = "https://github.com/dylni/process_control"
readme = "README.md"
keywords = ["kill", "process", "terminate", "timeout", "wait"]
categories = ["concurrency", "os"]
license = "MIT OR Apache-2.0"

[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 = { version = "0.4", optional = true }
libc = "0.2"

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["handleapi", "processthreadsapi", "synchapi", "winbase", "winerror"] }

[build-dependencies]
cc = "1.0"