supi-cli 0.2.0

A simple process supervisor for spawning and managing arbitrary commands
[[bin]]
name = "supi-cli"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.crossterm]
features = ["event-stream"]
version = "0.28"

[dependencies.futures]
version = "0.3"

[dependencies.nix]
features = ["signal"]
version = "0.29"

[dependencies.signal-hook]
version = "0.3"

[dependencies.signal-hook-tokio]
features = ["futures-v0_3"]
version = "0.3"

[dependencies.tokio]
features = ["full"]
version = "1.40"

[dependencies.tokio-util]
features = ["io"]
version = "0.7"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.libc]
version = "0.2"

[dev-dependencies.portable-pty]
version = "0.8"

[dev-dependencies.predicates]
version = "3.0"

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

[package]
authors = ["bjesuiter"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "A simple process supervisor for spawning and managing arbitrary commands"
edition = "2021"
exclude = ["agent/", "AGENT.md", "bonnie.toml"]
homepage = "https://github.com/bjesuiter/supi-cli"
keywords = ["supervisor", "process", "cli", "restart", "development"]
license = "MIT OR Apache-2.0"
name = "supi-cli"
readme = "README.md"
repository = "https://github.com/bjesuiter/supi-cli"
version = "0.2.0"

[[test]]
name = "cli_phase1_tests"
path = "tests/cli_phase1_tests.rs"

[[test]]
name = "cli_phase2_tests"
path = "tests/cli_phase2_tests.rs"

[[test]]
name = "cli_phase3_tests"
path = "tests/cli_phase3_tests.rs"

[[test]]
name = "cli_phase4_tests"
path = "tests/cli_phase4_tests.rs"

[[test]]
name = "cli_phase5_tests"
path = "tests/cli_phase5_tests.rs"

[[test]]
name = "cli_test_utils"
path = "tests/cli_test_utils.rs"