mirror of
https://github.com/m1ngsama/tracker.git
synced 2025-12-24 10:51:43 +00:00
feat: Add project dependencies and metadata
- Configure Cargo.toml with version 1.0.0 - Add sysinfo for system monitoring (equivalent to Python's psutil) - Add clap for command-line argument parsing - Add serde/serde_json for configuration management - Add chrono for datetime operations - Add logging framework (log + env_logger) - Add CSV export support - Add anyhow for error handling
This commit is contained in:
parent
77355ed667
commit
66a2f517c3
1 changed files with 14 additions and 2 deletions
16
Cargo.toml
16
Cargo.toml
|
|
@ -1,6 +1,18 @@
|
|||
[package]
|
||||
name = "tracker-rs"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue