[package]
edition = "2024"
rust-version = "1.91"
name = "procpilot"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Production-grade subprocess runner with typed errors, retry, and timeout"
homepage = "https://github.com/michaeldhopkins/procpilot"
readme = "README.md"
keywords = [
"subprocess",
"process",
"command",
"retry",
"timeout",
]
categories = [
"os",
"command-line-interface",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/michaeldhopkins/procpilot"
[lib]
name = "procpilot"
path = "src/lib.rs"
[dependencies.backon]
version = "1"
features = [
"std",
"std-blocking-sleep",
]
default-features = false
[dependencies.wait-timeout]
version = "0.2"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
bool_to_int_with_if = "warn"
cognitive-complexity = "warn"
collapsible-if = "deny"
extend_with_drain = "deny"
fn-params-excessive-bools = "deny"
match_bool = "warn"
needless-range-loop = "deny"
struct-excessive-bools = "deny"
too-many-arguments = "deny"
too-many-lines = "warn"
unwrap_used = "deny"