tokio-process-tools 0.9.2

Correctness-focused async subprocess orchestration for Tokio: bounded output, multi-consumer streams, output detection, guaranteed cleanup and graceful termination.
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"
rust-version = "1.89.0"
name = "tokio-process-tools"
version = "0.9.2"
authors = ["Lukas Potthast <privat@lukas-potthast.de>"]
build = false
exclude = [
    "/.idea",
    "/.claude",
    "/AGENTS.md",
    "/Justfile",
    "/TODO.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Correctness-focused async subprocess orchestration for Tokio: bounded output, multi-consumer streams, output detection, guaranteed cleanup and graceful termination."
readme = "README.md"
keywords = [
    "tokio",
    "process",
    "subprocess",
    "command",
    "output",
]
categories = [
    "asynchronous",
    "os",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lpotthast/tokio-process-tools"

[lib]
name = "tokio_process_tools"
path = "src/lib.rs"

[[bench]]
name = "chunk_delivery"
path = "benches/chunk_delivery.rs"
harness = false

[[bench]]
name = "line_delivery"
path = "benches/line_delivery.rs"
harness = false

[dependencies.bytes]
version = "1.11.1"
features = ["std"]
default-features = false

[dependencies.memchr]
version = "2.7.6"
default-features = false

[dependencies.thiserror]
version = "2.0.17"
features = ["std"]
default-features = false

[dependencies.tokio]
version = "1.48.0"
features = [
    "process",
    "sync",
    "io-util",
    "macros",
    "rt-multi-thread",
    "time",
]
default-features = false

[dependencies.tracing]
version = "0.1.41"
features = ["std"]
default-features = false

[dependencies.typed-builder]
version = "0.23.2"

[dev-dependencies.assertr]
version = "0.6.0"

[dev-dependencies.criterion]
version = "0.8.2"
features = ["async_tokio"]

[dev-dependencies.jiff]
version = "0.2.16"

[dev-dependencies.proptest]
version = "1.5.0"
features = [
    "std",
    "bit-set",
]
default-features = false

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

[dev-dependencies.tokio]
version = "1.48.0"
features = ["fs"]

[dev-dependencies.tokio-test]
version = "0.4.5"

[dev-dependencies.tracing-test]
version = "0.2.6"

[target."cfg(unix)".dependencies.nix]
version = "0.31.2"
features = [
    "signal",
    "process",
]
default-features = false

[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.2"
features = [
    "Win32_Foundation",
    "Win32_System_Console",
    "Win32_System_Threading",
]
default-features = false

[lints.clippy]
pedantic = "warn"

[lints.rust]
missing_docs = "warn"
private_bounds = "deny"