[package]
name = "syswatch"
version = "0.6.1"
edition = "2021"
description = "Single-host, read-only system diagnostics TUI. Twelve tabs covering CPU, memory, disks, processes, GPU, power, services, network, plus a Timeline scrubber and an Insights anomaly engine. Sibling to netwatch."
license = "MIT"
repository = "https://github.com/matthart1983/syswatch"
homepage = "https://github.com/matthart1983/syswatch"
readme = "README.md"
keywords = ["system", "monitoring", "tui", "diagnostics", "observability"]
categories = ["command-line-utilities"]
exclude = [
"demo.gif",
"demo.tape",
"Formula/**",
"LAUNCH_DRAFT.md",
]
[[bin]]
name = "syswatch"
path = "src/main.rs"
[dependencies]
ratatui = "0.29"
crossterm = "0.28"
sysinfo = "0.32"
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["rt", "macros", "time", "sync"] }
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
netwatch-sdk = "0.1"
toml = "0.8"
dirs = "5"
postcard = { version = "1", features = ["use-std"] }
nvml-wrapper = { version = "0.12", optional = true }
[target.'cfg(target_os = "macos")'.dependencies]
macpow = { version = "0.1", default-features = false }
[dev-dependencies]
tempfile = "3"
[features]
default = []
gpu-nvidia = ["dep:nvml-wrapper"]
smart = []
[profile.release]
lto = "thin"
codegen-units = 1
strip = true