cozip

(★ 284)

Cooperative CPU + GPU (WebGPU) compression library for Rust.

File Explorer

  • .gitignore
  • bench.sh
  • Cargo.lock
  • Cargo.toml
  • LICENSE
  • README.ja.md
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

cargo check

View Details ▼

Check a local package and all of its dependencies for errors.

cargo {{[c|check]}}

Check the current package:

cargo {{[c|check]}} --tests

Check all tests:

cargo {{[c|check]}} --test {{integration_test1}}

Check the integration tests in `tests/integration_test1.rs`:

🔍

cargo test

View Details ▼

Execute the unit and integration tests of a Rust package.

cargo {{[t|test]}} {{test_name}}

Only run tests containing a specific string in their names:

cargo {{[t|test]}} -- --test-threads {{count}}

Set the number of simultaneous running test cases:

cargo {{[t|test]}} {{[-r|--release]}}

Test artifacts in release mode, with optimizations:

🔍

compress

View Details ▼

Compress files using the Unix `compress` command.

compress {{path/to/file1 path/to/file2 ...}}

Compress specific files:

compress -f {{path/to/file1 path/to/file2 ...}}

Compress specific files, ignore non-existent ones:

compress -b {{bits}}

Specify the maximum compression bits (9-16 bits):

// repository documentation