[package]
name = "subprocess"
version = "0.1.14"
authors = ["Hrvoje Nikšić <hniksic@gmail.com>"]
description = "Execution of child processes and pipelines, inspired by Python's subprocess\nmodule, with Rust-specific extensions.\n"
documentation = "https://docs.rs/subprocess/"
readme = "README.md"
keywords = ["execute", "process", "command", "redirect", "pipe"]
license = "Apache-2.0/MIT"
repository = "https://github.com/hniksic/rust-subprocess"
[lib]
name = "subprocess"
path = "src/lib.rs"
[dependencies.libc]
version = "0.2"
[dev-dependencies.tempdir]
version = "0.3.5"
[target."cfg(windows)".dependencies.crossbeam]
version = "0.2.10"
[target."cfg(windows)".dependencies.kernel32-sys]
version = "0.2.2"
[target."cfg(windows)".dependencies.winapi]
version = "0.2.8"