Cargo.toml (529B)
1 [package] 2 name = "tools" 3 version = "0.1.0" 4 edition = "2024" 5 6 [dependencies] 7 anyhow = "1.0.101" 8 chrono = "0.4.44" 9 clap = { version = "4.5.57", features = ["derive"] } 10 crc-fast = "1.10.0" 11 crossterm = { version = "0.29.0", features = ["event-stream"] } 12 indicatif = "0.18.3" 13 ratatui = "0.30.0" 14 thiserror = "2.0.18" 15 tokio = { version = "1.49.0", features = ["full"] } 16 tokio-serial = "5.4.5" 17 tokio-stream = "0.1.18" 18 tracing = "0.1.44" 19 tracing-indicatif = "0.3.14" 20 tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }