zzz-arc

Crates.iozzz-arc
lib.rszzz-arc
version0.4.2
created_at2025-06-13 01:27:24.81287+00
updated_at2025-12-31 10:00:34.768297+00
descriptionA fast compression multitool supporting zst, tgz, txz, zip, and 7z formats with optional encryption
homepagehttps://github.com/redthing1/zzz
repositoryhttps://github.com/redthing1/zzz
max_upload_size
id1710955
size343,646
red thing (redthing1)

documentation

README

zzz

a fast compression multitool

features

  • supports zst, tgz, txz, zip, 7z formats
  • optional encryption for zst and 7z
  • smart file filtering with excludes
  • streaming compression with threading

build

cargo build --release

install

cargo install --path .

usage

# compress
zzz c input/ -o archive.zst
zzz c file.txt -f 7z -p password
zzz c file.txt -f gz -o file.txt.gz

# extract
zzz x archive.zst
zzz x archive.7z -p password -C output/
zzz x file.txt.gz -C output/
zzz x archive.tgz -C output/ --strip-components 1

# list contents
zzz l archive.tgz
zzz l file.txt.xz

# test integrity
zzz t archive.7z
Commit count: 19

cargo fmt