[package]
edition = "2024"
rust-version = "1.85"
name = "agent-procs"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Concurrent process runner for AI agents"
readme = "README.md"
license = "MIT"
repository = "https://github.com/jkhoffman/agent-procs"
[lib]
name = "agent_procs"
path = "src/lib.rs"
[[bin]]
name = "agent-procs"
path = "src/main.rs"
[[test]]
name = "proptest_tests"
path = "tests/proptest_tests.rs"
[[test]]
name = "test_config"
path = "tests/test_config.rs"
[[test]]
name = "test_e2e"
path = "tests/test_e2e.rs"
[[test]]
name = "test_follow"
path = "tests/test_follow.rs"
[[test]]
name = "test_logs"
path = "tests/test_logs.rs"
[[test]]
name = "test_paths"
path = "tests/test_paths.rs"
[[test]]
name = "test_port_assignment"
path = "tests/test_port_assignment.rs"
[[test]]
name = "test_process_groups"
path = "tests/test_process_groups.rs"
[[test]]
name = "test_protocol"
path = "tests/test_protocol.rs"
[[test]]
name = "test_proxy"
path = "tests/test_proxy.rs"
[[test]]
name = "test_run_stop"
path = "tests/test_run_stop.rs"
[[test]]
name = "test_session"
path = "tests/test_session.rs"
[[test]]
name = "test_session_mgmt"
path = "tests/test_session_mgmt.rs"
[[test]]
name = "test_tui_app"
path = "tests/test_tui_app.rs"
[[test]]
name = "test_tui_smoke"
path = "tests/test_tui_smoke.rs"
[[test]]
name = "test_up_down"
path = "tests/test_up_down.rs"
[[test]]
name = "test_wait"
path = "tests/test_wait.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.crossterm]
version = "0.28"
features = ["event-stream"]
[dependencies.futures]
version = "0.3"
[dependencies.http]
version = "1"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
version = "1"
features = [
"http1",
"server",
"client",
]
[dependencies.hyper-util]
version = "0.1"
features = [
"tokio",
"http1",
"server",
"client-legacy",
]
[dependencies.nix]
version = "0.29"
features = [
"signal",
"process",
"user",
]
[dependencies.ratatui]
version = "0.29"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"fmt",
"env-filter",
]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
items_after_statements = "allow"
manual_let_else = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
single_match_else = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1