tracker/Cargo.toml
m1ngsama b9b2b7aced refactor: remove legacy Python code and optimize Rust implementation
Removed all Python source files and build configuration. Refactored Rust code to remove unused modules (exporter) and fields. Updated README to man-page format.
2025-12-18 13:12:10 +08:00

17 lines
374 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"
anyhow = "1.0"