this repo has no description
0
fork

Configure Feed

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

at 94e96f11abfe9268dfebd49b971bcdd875fe1f62 48 lines 987 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" 15brotli = "8" 16bzip2 = { version = "0.6", features = ["static"] } 17clap = { version = "4", features = ["derive"] } 18clap_complete = "4" 19clap_mangen = "0.2" 20flate2 = "1" 21indicatif = "0.18" 22is-terminal = "0.4" 23lz4_flex = "0.13" 24snap = "1" 25tar = "0.4" 26tempfile = "3" 27xz2 = { version = "0.1", features = ["static"] } 28zip = "8" 29zstd = "0.13" 30 31[dev-dependencies] 32assert_cmd = "2" 33assert_fs = "1" 34predicates = "3" 35rand = "0.10" 36 37[features] 38default = ["interop"] 39interop = [] 40 41[profile.dev.package."*"] 42opt-level = 3 43 44[profile.release] 45strip = true 46lto = true 47codegen-units = 1 48panic = "abort"