Files
sized/Cargo.toml
T
gamertan f379064e44 feat: v0.2.0 optimization refactor and docs
- Refactor core traversal to single-pass O(N) tree construction
- Optimize CSV output using `csv` crate for robust escaping
- Optimize JSON output with zero-copy serialization
- Add MANUAL.md
- Bump version to 0.2.0
- Remove walkdir dependency
2026-01-22 13:17:12 -05:00

23 lines
435 B
TOML

[package]
name = "sized"
version = "0.2.0"
edition = "2021"
[dependencies]
clap = { version = "4.4", features = ["derive"] }
rayon = "1.8"
humansize = "2.1"
colored = "2.0"
comfy-table = "7.0"
byte-unit = "5.0"
strum = { version = "0.25", features = ["derive"] }
ignore = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.3"
chrono = "0.4"
clap_complete = "4.4"
atty = "0.2"
clap_mangen = "0.2.31"