[package]
edition = "2024"
name = "watchctl"
version = "0.4.0"
authors = ["Ivan Zakharchanka <3axap4eHko@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Process supervisor with wait, watch, and retry phases"
homepage = "https://github.com/3axap4eHko/watchctl"
readme = "README.md"
keywords = [
"cli",
"process",
"supervisor",
"health-check",
"retry",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/3axap4eHko/watchctl"
[[bin]]
name = "watchctl"
path = "src/main.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.futures]
version = "0.3"
[dependencies.reqwest]
version = "0.13"
features = ["rustls"]
default-features = false
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.49"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2.186"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Foundation",
"Win32_System_JobObjects",
]