this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at d7eac9681af468ef2dd62f00e8a09e36cf744585 46 lines 947 B view raw
1[package] 2name = "cmprss" 3version = "0.3.0" 4edition = "2024" 5authors = ["Patrick Jackson <patrick@jackson.dev>"] 6readme = "README.md" 7license = "AGPL-3.0-or-later" 8description = "A compression multi-tool for the command line." 9repository = "https://github.com/arcuru/cmprss" 10homepage = "https://github.com/arcuru/cmprss" 11categories = ["command-line-utilities", "compression"] 12 13[dependencies] 14anyhow = "1" 15bzip2 = { version = "0.6", features = ["static"] } 16clap = { version = "4", features = ["derive"] } 17flate2 = "1" 18indicatif = "0.18" 19is-terminal = "0.4" 20tar = "0.4" 21xz2 = { version = "0.1", features = ["static"] } 22zip = "8" 23tempfile = "3" 24zstd = "0.13" 25lz4_flex = "0.13" 26brotli = "8" 27snap = "1" 28 29[dev-dependencies] 30assert_cmd = "2" 31assert_fs = "1" 32predicates = "3" 33rand = "0.10" 34 35[features] 36default = ["interop"] 37interop = [] 38 39[profile.dev.package."*"] 40opt-level = 3 41 42[profile.release] 43strip = true 44lto = true 45codegen-units = 1 46panic = "abort"