mirror of
https://github.com/m1ngsama/tracker.git
synced 2025-12-24 10:51:43 +00:00
- Add crossterm dependency for TUI features - Implement colored progress bars for system metrics - Add clear screen and cursor reset in continuous mode - Style process table with colors and formatting - Colorize alert thresholds (Green/Yellow/Red)
26 lines
468 B
TOML
26 lines
468 B
TOML
[package]
|
|
name = "tracker-rs"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
authors = ["m1ngsama"]
|
|
description = "A comprehensive system monitoring tool"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
sysinfo = "0.32"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = "0.4"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
csv = "1.3"
|
|
anyhow = "1.0"
|
|
crossterm = "0.27"
|
|
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|
|
|