[[bin]]
name = "just-echo"
path = "src/bin/just-echo.rs"
[dependencies.libc]
version = "0.2.78"
[dev-dependencies.tempfile]
version = "3.3.0"
[[example]]
name = "capture_output"
path = "examples/capture_output.rs"
[[example]]
name = "communicate"
path = "examples/communicate.rs"
[[example]]
name = "detached"
path = "examples/detached.rs"
[[example]]
name = "environment"
path = "examples/environment.rs"
[[example]]
name = "exit_status"
path = "examples/exit_status.rs"
[[example]]
name = "pipeline"
path = "examples/pipeline.rs"
[[example]]
name = "redirect_file"
path = "examples/redirect_file.rs"
[[example]]
name = "sample"
path = "examples/sample.rs"
[[example]]
name = "signals_unix"
path = "examples/signals_unix.rs"
[[example]]
name = "stdin_feed"
path = "examples/stdin_feed.rs"
[[example]]
name = "streaming"
path = "examples/streaming.rs"
[[example]]
name = "timeout"
path = "examples/timeout.rs"
[[example]]
name = "working_dir"
path = "examples/working_dir.rs"
[lib]
name = "subprocess"
path = "src/lib.rs"
[package]
authors = ["Hrvoje Nikšić <hniksic@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = """
Execution of child processes and pipelines, inspired by Python's subprocess
module, with Rust-specific extensions.
"""
documentation = "https://docs.rs/subprocess/"
edition = "2024"
keywords = ["execute", "process", "command", "redirect", "pipe"]
license = "Apache-2.0/MIT"
name = "subprocess"
readme = "README.md"
repository = "https://github.com/hniksic/rust-subprocess"
version = "0.2.13"
[target."cfg(windows)".dependencies.winapi]
features = ["std", "handleapi", "namedpipeapi", "processenv", "synchapi", "winerror", "processthreadsapi", "winbase", "fileapi", "minwinbase", "ioapiset"]
version = "0.3.8"
[[test]]
name = "escape-args"
path = "tests/escape-args.rs"
[[test]]
name = "just-echo"
path = "tests/just-echo.rs"
[[test]]
name = "weird-args"
path = "tests/weird-args.rs"