cozip

(★ 284)

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

파일 탐색기

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

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

cargo check

설명 보기 ▼

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

설명 보기 ▼

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

설명 보기 ▼

Unix `compress` 명령어를 사용하여 파일 압축.
더 많은 정보: <https://manned.org/compress>.

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

특정 파일 압축:

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

특정 파일 압축, 존재하지 않는 파일은 무시:

compress -b {{bits}}

최대 압축 비트 지정 (9-16 비트):

// repository documentation