[package]
name = "stackpatrol"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
description = "Single-binary Rust CLI that monitors a server and reports to the StackPatrol control plane."
readme = "README.md"
[[bin]]
name = "stackpatrol"
path = "src/main.rs"
[dependencies]
anyhow.workspace = true
clap.workspace = true
dirs = "5"
reqwest.workspace = true
serde.workspace = true
serde_json.workspace = true
sysinfo = { version = "0.32", default-features = false, features = ["disk", "system"] }
tokio.workspace = true
toml.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
stackpatrol-core.workspace = true
[dev-dependencies]
tempfile = "3"