[package]
edition = "2024"
rust-version = "1.88"
name = "cmprss"
version = "0.4.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 = "append"
path = "tests/append.rs"
[[test]]
name = "brotli"
path = "tests/brotli.rs"
[[test]]
name = "bzip2"
path = "tests/bzip2.rs"
[[test]]
name = "compare"
path = "tests/compare.rs"
[[test]]
name = "force"
path = "tests/force.rs"
[[test]]
name = "gzip"
path = "tests/gzip.rs"
[[test]]
name = "list"
path = "tests/list.rs"
[[test]]
name = "lz4"
path = "tests/lz4.rs"
[[test]]
name = "lzma"
path = "tests/lzma.rs"
[[test]]
name = "magic"
path = "tests/magic.rs"
[[test]]
name = "meta"
path = "tests/meta.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[[test]]
name = "sevenz"
path = "tests/sevenz.rs"
[[test]]
name = "shortcuts"
path = "tests/shortcuts.rs"
[[test]]
name = "snappy"
path = "tests/snappy.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.brotli]
version = "8"
[dependencies.bzip2]
version = "0.6"
features = ["static"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.clap_mangen]
version = "0.2"
[dependencies.flate2]
version = "1"
[dependencies.indicatif]
version = "0.18"
[dependencies.is-terminal]
version = "0.4"
[dependencies.lz4_flex]
version = "0.13"
[dependencies.sevenz-rust2]
version = "0.20"
[dependencies.snap]
version = "1"
[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