subprocess 0.2.14

Execution of child processes and pipelines, inspired by Python's subprocess module, with Rust-specific extensions.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "subprocess"
version = "0.2.14"
authors = ["Hrvoje Nikšić <hniksic@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Execution of child processes and pipelines, inspired by Python's subprocess
module, with Rust-specific extensions.
"""
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"

[[bin]]
name = "just-echo"
path = "src/bin/just-echo.rs"

[[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"

[[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"

[dependencies.libc]
version = "0.2.78"

[dev-dependencies.tempfile]
version = "3.3.0"

[target."cfg(windows)".dependencies.winapi]
version = "0.3.8"
features = [
    "std",
    "handleapi",
    "namedpipeapi",
    "processenv",
    "synchapi",
    "winerror",
    "processthreadsapi",
    "winbase",
    "fileapi",
    "minwinbase",
    "ioapiset",
]