├── .gitattributes ├── .github └── workflows │ └── test.yaml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── lz4-sys ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── build.rs ├── src │ ├── lib.rs │ └── wasm_shim.rs └── wasm-shim │ ├── assert.h │ ├── stdlib.h │ └── string.h └── src ├── bin └── lz4.rs ├── block └── mod.rs ├── decoder.rs ├── encoder.rs ├── lib.rs └── liblz4.rs /.gitattributes: -------------------------------------------------------------------------------- 1 | *.rs text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/README.md -------------------------------------------------------------------------------- /lz4-sys/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/lz4-sys/CHANGELOG.md -------------------------------------------------------------------------------- /lz4-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/lz4-sys/Cargo.toml -------------------------------------------------------------------------------- /lz4-sys/LICENSE: -------------------------------------------------------------------------------- 1 | ../LICENSE -------------------------------------------------------------------------------- /lz4-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/lz4-sys/build.rs -------------------------------------------------------------------------------- /lz4-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/lz4-sys/src/lib.rs -------------------------------------------------------------------------------- /lz4-sys/src/wasm_shim.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/lz4-sys/src/wasm_shim.rs -------------------------------------------------------------------------------- /lz4-sys/wasm-shim/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/lz4-sys/wasm-shim/assert.h -------------------------------------------------------------------------------- /lz4-sys/wasm-shim/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/lz4-sys/wasm-shim/stdlib.h -------------------------------------------------------------------------------- /lz4-sys/wasm-shim/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/lz4-sys/wasm-shim/string.h -------------------------------------------------------------------------------- /src/bin/lz4.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/src/bin/lz4.rs -------------------------------------------------------------------------------- /src/block/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/src/block/mod.rs -------------------------------------------------------------------------------- /src/decoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/src/decoder.rs -------------------------------------------------------------------------------- /src/encoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/src/encoder.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/liblz4.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10XGenomics/lz4-rs/HEAD/src/liblz4.rs --------------------------------------------------------------------------------