Initial GPL-3.0 Release (v1.0.0)

This commit is contained in:
2026-01-22 21:26:07 -05:00
commit 36d3780bcc
23 changed files with 4087 additions and 0 deletions
+55
View File
@@ -0,0 +1,55 @@
[package]
name = "sized"
version = "1.0.0"
edition = "2021"
description = "A modern, fast, and concurrent disk usage analyzer"
license = "GPL-3.0-only"
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"] }
rayon = "1.8"
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"
time = { version = "0.3", features = ["macros", "formatting"] }
clap_complete = "4.4"
clap_mangen = "0.2.31"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
tempfile = "3.10"
criterion = "0.5"
[[bench]]
name = "benchmark"
harness = false