this repo has no description
0
fork

Configure Feed

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

feat: add static build for bzip2

+7 -8
+1 -1
Cargo.toml
··· 11 11 categories = ["command-line-utilities", "compression"] 12 12 13 13 [dependencies] 14 - bzip2 = "0.5" 14 + bzip2 = { version = "0.5", features = ["static"] } 15 15 clap = { version = "4", features = ["derive"] } 16 16 flate2 = "1" 17 17 indicatif = "0.17"
+2 -5
README.md
··· 7 7 8 8 **Mirrored on [GitHub](https://github.com/arcuru/cmprss) and [Codeberg](https://codeberg.org/arcuru/cmprss). GitHub is the official repo, but use either repo to contribute. Issues can't be synced so there may be some duplicates.** 9 9 10 - **Status: Alpha.** 11 - CLI is relatively stable but likely contains bugs, and there may be future breaking changes. 12 - 13 10 A compression multi-tool for the command line. 14 11 Replace `tar` with something you can remember. 15 12 [Relevant XKCD](https://xkcd.com/1168/). ··· 20 17 - gzip 21 18 - lz4 22 19 - tar 23 - - xz 20 + - xz (bindings) 24 21 - zip 25 - - zstd 22 + - zstd (bindings) 26 23 27 24 ## Install 28 25
+4 -2
flake.nix
··· 74 74 # Clean the src to only have the Rust-relevant files 75 75 src = craneLib.cleanCargoSource ./.; 76 76 strictDeps = true; 77 + nativeBuildInputs = [ 78 + pkgs.pkg-config 79 + pkgs.gcc 80 + ]; 77 81 }; 78 82 79 83 # Build only the cargo dependencies so we can cache them all when running in CI ··· 175 179 gum # Pretty printing in scripts 176 180 nodePackages.prettier 177 181 statix 178 - 179 - pkg-config 180 182 181 183 # For running tests 182 184 diffutils