[package]
edition = "2024"
name = "cmprss"
version = "0.3.0"
authors = ["Patrick Jackson <patrick@jackson.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A compression multi-tool for the command line."
homepage = "https://github.com/arcuru/cmprss"
readme = "README.md"
categories = [
"command-line-utilities",
"compression",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/arcuru/cmprss"
[features]
default = ["interop"]
interop = []
[[bin]]
name = "cmprss"
path = "src/main.rs"
[[test]]
name = "bzip2"
path = "tests/bzip2.rs"
[[test]]
name = "compare"
path = "tests/compare.rs"
[[test]]
name = "gzip"
path = "tests/gzip.rs"
[[test]]
name = "lz4"
path = "tests/lz4.rs"
[[test]]
name = "magic"
path = "tests/magic.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[[test]]
name = "tar"
path = "tests/tar.rs"
[[test]]
name = "xz"
path = "tests/xz.rs"
[[test]]
name = "zip"
path = "tests/zip.rs"
[[test]]
name = "zstd"
path = "tests/zstd.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bzip2]
version = "0.6"
features = ["static"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.flate2]
version = "1"
[dependencies.indicatif]
version = "0.18"
[dependencies.is-terminal]
version = "0.4"
[dependencies.lz4_flex]
version = "0.13"
[dependencies.tar]
version = "0.4"
[dependencies.tempfile]
version = "3"
[dependencies.xz2]
version = "0.1"
features = ["static"]
[dependencies.zip]
version = "8"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.assert_fs]
version = "1"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.rand]
version = "0.10"
[profile.dev.package."*"]
opt-level = 3
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true