cozip
Cooperative CPU + GPU (WebGPU) compression library for Rust.
파일 탐색기
- config.toml
- pdeflate-gpu-sparse-direct-output-tasks.md
- pdeflate-v0-huffman-lut-tasks.md
- README.md
- architecture.md
- context-log.md
- deflate-parallel-profile.md
- gdeflate-hybrid-cpu-gpu-design.md
- gpu-deflate-chunk-pipeline.md
- gpu-full-task-design.md
- hybrid-decompress-with-zip-metadata-design.md
- optimization-candidates.md
- pdeflate-gpu-async-batch-pipeline-design.md
- pdeflate-gpu-decompress-design.md
- pdeflate-gpu-sparse-direct-output-design.md
- pdeflate-v0-baseline.md
- pdeflate-v0-spec.md
- README.md
- zip-compatible-hybrid-deflate-design.md
- zip-gpu-compatibility.md
- _cozip_common.sh
- CoZip Compress (options)
- CoZip Compress to CoZip
- CoZip Compress to ZIP
- CoZip Extract (options)
- CoZip Extract Here
- application-x-cozip.xml
- cozip-compress-cozip-servicemenu.desktop
- cozip-compress-details-servicemenu.desktop
- cozip-compress-zip-servicemenu.desktop
- cozip-extract-details-servicemenu.desktop
- cozip-extract-here-servicemenu.desktop
- cozip.desktop
- install.sh
- uninstall.sh
- zip_bench.rs
- lib.rs
- Cargo.toml
- bench_1gb.rs
- bitpack.wgsl
- decode_stored.wgsl
- dyn_finalize.wgsl
- dyn_map.wgsl
- freq.wgsl
- litlen.wgsl
- phase1_fused.wgsl
- scan_add.wgsl
- scan_blocks.wgsl
- token_finalize.wgsl
- tokenize.wgsl
- gpu.rs
- lib.rs
- tests.rs
- Cargo.toml
- comp.ico
- decomp.ico
- ICON_LICENSE
- en_US.toml
- ja_JP.toml
- zh_CN.toml
- generate_sample_data.rs
- compress.rs
- compress_settings.rs
- decompress.rs
- decompress_settings.rs
- mod.rs
- widgets.rs
- app.rs
- i18n.rs
- jobs.rs
- launch.rs
- main.rs
- build.rs
- Cargo.toml
- desktop.rc
- bench_pdeflate.rs
- build_table_bucket_count.wgsl
- build_table_bucket_prefix.wgsl
- build_table_bucket_scatter.wgsl
- build_table_candidate.wgsl
- build_table_finalize.wgsl
- build_table_finalize_emit.wgsl
- build_table_finalize_emit_desc.wgsl
- build_table_freq.wgsl
- build_table_pack_index.wgsl
- decode_v2.wgsl
- decode_v2_batch.wgsl
- match.wgsl
- match_prepare_table.wgsl
- pack_chunk.wgsl
- pack_chunk_sparse_prepare.wgsl
- pack_chunk_sparse_section.wgsl
- section_cmd_pack.wgsl
- section_encode.wgsl
- section_meta.wgsl
- section_token_prefix.wgsl
- section_token_scatter.wgsl
- section_tokenize.wgsl
- gpu.rs
- mod.rs
- shaders.rs
- stream.rs
- lib.rs
- tests.rs
- Cargo.toml
- fallback.rs
- linux.rs
- mod.rs
- windows.rs
- error.rs
- file_reader.rs
- file_writer.rs
- lib.rs
- options.rs
- Cargo.toml
- comp.ico
- decomp.ico
- ICON_LICENSE
- en_US.toml
- ja_JP.toml
- cozip_win_uninstaller.rs
- i18n.rs
- lib.rs
- main.rs
- build.rs
- Cargo.toml
- installer.rc
- en_US.toml
- ja_JP.toml
- zh_CN.toml
- class_ids.rs
- command.rs
- factory.rs
- i18n.rs
- launch.rs
- lib.rs
- registration.rs
- Cargo.toml
- .gitignore
- bench.sh
- Cargo.lock
- Cargo.toml
- LICENSE
- README.ja.md
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cargo check
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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 비트):
