feat: v0.2.0 - Performance optimization and distribution pipeline

- Implemented multi-threaded directory traversal using ignore::WalkParallel
- Added dynamic thread allocation for balanced CPU utilization
- Refactored core logic to single-pass, in-memory tree construction (O(N))
- Added --compare, --units, and --precision flags
- Established SCM-neutral distribution pipeline (Makefile, release.sh, Homebrew)
- Comprehensive updates to README.md, MANUAL.md, and CHANGELOG.md
- Decoupled from SCM-specific workflows
This commit is contained in:
2026-01-22 15:00:48 -05:00
parent db9059e2fc
commit 276c6404a9
13 changed files with 763 additions and 138 deletions
+24
View File
@@ -2,6 +2,30 @@
name = "sized"
version = "0.2.0"
edition = "2021"
description = "A modern, fast, and concurrent disk usage analyzer"
license = "MIT"
repository = "https://gitea.speelman.ca/gamertan/sized"
readme = "README.md"
categories = ["command-line-utilities", "filesystem"]
keywords = ["du", "size", "disk", "usage", "parallel"]
[package.metadata.deb]
maintainer = "Cole Speelman"
copyright = "2026, Cole Speelman"
license-file = ["LICENSE", "4"]
extended-description = """
sized is a modern, fast, and concurrent disk usage analyzer.
Features include apparent vs disk usage, binary/decimal units, and gitignore support.
"""
section = "utils"
priority = "optional"
assets = [
["target/release/sized", "usr/bin/sized", "755"],
["sized.1", "usr/share/man/man1/sized.1", "644"],
["README.md", "usr/share/doc/sized/README.md", "644"],
]
[dependencies]
clap = { version = "4.4", features = ["derive"] }