├── .appveyor.yml ├── .github └── workflows │ ├── bench.yml │ └── checks.yaml ├── .gitlab-ci.yml ├── .gitmodules ├── AUTHORS ├── CMakeLists.txt ├── CMakeOptions.txt ├── COMPILING.md ├── COPYING ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── NEWS.md ├── README.XML.STUFF ├── README.md ├── SECURITY.md ├── blocksort.c ├── bz_version.h.in ├── bzdiff ├── bzgrep ├── bzip2.c ├── bzip2.doap ├── bzip2.pc.in ├── bzip2.rs ├── bzip2.txt ├── bzip2_benchmarks.json ├── bzip2recover.c ├── bzip2recover.rs ├── bzlib.c ├── bzlib.h ├── bzlib_private.h ├── bzmore ├── cmake ├── ExtractValidFlags.cmake ├── FindCUnit.cmake ├── FindValgrind.cmake ├── SymLink.cmake └── Version.cmake ├── code-of-conduct.md ├── compress.c ├── crctable.c ├── decompress.c ├── dlltest.c ├── docs ├── CMakeLists.txt ├── RELEASING.md ├── audits │ └── NGICore bzip2 in rust code audit report 2025 1.0.pdf ├── bz-common.xsl ├── bz-fo.xsl ├── bz-html.xsl ├── bzip.css ├── entities.xml ├── format.pl ├── manual.xml ├── meson.build └── xmlproc.sh ├── fuzz ├── Cargo.toml ├── README.md └── fuzz_targets │ ├── compress_then_decompress.rs │ ├── compress_then_decompress_chunked.rs │ ├── decompress.rs │ └── decompress_chunked.rs ├── huffman.c ├── install_links.py ├── libbz2-rs-sys-cdylib ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── bzpipe.c └── src │ └── lib.rs ├── libbz2-rs-sys ├── Cargo.toml ├── LICENSE ├── include │ └── bzlib.h └── src │ ├── allocator.rs │ ├── blocksort.rs │ ├── bzlib.rs │ ├── compress.rs │ ├── crctable.rs │ ├── decompress.rs │ ├── high_level.rs │ ├── huffman.rs │ ├── lib.rs │ └── randtable.rs ├── libbz2.def ├── man ├── CMakeLists.txt ├── bzdiff.1 ├── bzgrep.1 ├── bzip2.1 ├── bzip2.1.preformatted ├── bzmore.1 └── meson.build ├── meson.build ├── meson_options.txt ├── mk251.c ├── patches-not-included.txt ├── randtable.c ├── silesia-small.tar ├── spewG.c ├── test-libbz2-rs-sys ├── Cargo.toml ├── examples │ ├── compress.rs │ └── decompress.rs └── src │ ├── chunked.rs │ └── lib.rs ├── tests ├── CMakeLists.txt ├── README.md ├── compress-sample1-log.txt ├── input │ ├── quick │ │ ├── sample1.bz2 │ │ ├── sample1.ref │ │ ├── sample2.bz2 │ │ ├── sample2.ref │ │ ├── sample3.bz2 │ │ └── sample3.ref │ └── randomized-blocks.bin ├── large_test.py ├── meson.build ├── quick.rs ├── quick_test.py ├── recover.rs └── testcase.py ├── unzcrash.c ├── version.rc └── version.rc.in /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.github/workflows/bench.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/.github/workflows/bench.yml -------------------------------------------------------------------------------- /.github/workflows/checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/.github/workflows/checks.yaml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeOptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/CMakeOptions.txt -------------------------------------------------------------------------------- /COMPILING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/COMPILING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/COPYING -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | COPYING -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.XML.STUFF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/README.XML.STUFF -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /blocksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/blocksort.c -------------------------------------------------------------------------------- /bz_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bz_version.h.in -------------------------------------------------------------------------------- /bzdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzdiff -------------------------------------------------------------------------------- /bzgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzgrep -------------------------------------------------------------------------------- /bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzip2.c -------------------------------------------------------------------------------- /bzip2.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzip2.doap -------------------------------------------------------------------------------- /bzip2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzip2.pc.in -------------------------------------------------------------------------------- /bzip2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzip2.rs -------------------------------------------------------------------------------- /bzip2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzip2.txt -------------------------------------------------------------------------------- /bzip2_benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzip2_benchmarks.json -------------------------------------------------------------------------------- /bzip2recover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzip2recover.c -------------------------------------------------------------------------------- /bzip2recover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzip2recover.rs -------------------------------------------------------------------------------- /bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzlib.c -------------------------------------------------------------------------------- /bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzlib.h -------------------------------------------------------------------------------- /bzlib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzlib_private.h -------------------------------------------------------------------------------- /bzmore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/bzmore -------------------------------------------------------------------------------- /cmake/ExtractValidFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/cmake/ExtractValidFlags.cmake -------------------------------------------------------------------------------- /cmake/FindCUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/cmake/FindCUnit.cmake -------------------------------------------------------------------------------- /cmake/FindValgrind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/cmake/FindValgrind.cmake -------------------------------------------------------------------------------- /cmake/SymLink.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/cmake/SymLink.cmake -------------------------------------------------------------------------------- /cmake/Version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/cmake/Version.cmake -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/compress.c -------------------------------------------------------------------------------- /crctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/crctable.c -------------------------------------------------------------------------------- /decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/decompress.c -------------------------------------------------------------------------------- /dlltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/dlltest.c -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/docs/RELEASING.md -------------------------------------------------------------------------------- /docs/audits/NGICore bzip2 in rust code audit report 2025 1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/docs/audits/NGICore bzip2 in rust code audit report 2025 1.0.pdf -------------------------------------------------------------------------------- /docs/bz-common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/docs/bz-common.xsl -------------------------------------------------------------------------------- /docs/bz-fo.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/docs/bz-fo.xsl -------------------------------------------------------------------------------- /docs/bz-html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/docs/bz-html.xsl -------------------------------------------------------------------------------- /docs/bzip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/docs/bzip.css -------------------------------------------------------------------------------- /docs/entities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/docs/entities.xml -------------------------------------------------------------------------------- /docs/format.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/docs/format.pl -------------------------------------------------------------------------------- /docs/manual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/docs/manual.xml -------------------------------------------------------------------------------- /docs/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/docs/meson.build -------------------------------------------------------------------------------- /docs/xmlproc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/docs/xmlproc.sh -------------------------------------------------------------------------------- /fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/fuzz/Cargo.toml -------------------------------------------------------------------------------- /fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/fuzz/README.md -------------------------------------------------------------------------------- /fuzz/fuzz_targets/compress_then_decompress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/fuzz/fuzz_targets/compress_then_decompress.rs -------------------------------------------------------------------------------- /fuzz/fuzz_targets/compress_then_decompress_chunked.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/fuzz/fuzz_targets/compress_then_decompress_chunked.rs -------------------------------------------------------------------------------- /fuzz/fuzz_targets/decompress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/fuzz/fuzz_targets/decompress.rs -------------------------------------------------------------------------------- /fuzz/fuzz_targets/decompress_chunked.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/fuzz/fuzz_targets/decompress_chunked.rs -------------------------------------------------------------------------------- /huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/huffman.c -------------------------------------------------------------------------------- /install_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/install_links.py -------------------------------------------------------------------------------- /libbz2-rs-sys-cdylib/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys-cdylib/Cargo.lock -------------------------------------------------------------------------------- /libbz2-rs-sys-cdylib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys-cdylib/Cargo.toml -------------------------------------------------------------------------------- /libbz2-rs-sys-cdylib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys-cdylib/LICENSE -------------------------------------------------------------------------------- /libbz2-rs-sys-cdylib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys-cdylib/README.md -------------------------------------------------------------------------------- /libbz2-rs-sys-cdylib/bzpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys-cdylib/bzpipe.c -------------------------------------------------------------------------------- /libbz2-rs-sys-cdylib/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys-cdylib/src/lib.rs -------------------------------------------------------------------------------- /libbz2-rs-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys/Cargo.toml -------------------------------------------------------------------------------- /libbz2-rs-sys/LICENSE: -------------------------------------------------------------------------------- 1 | ../COPYING -------------------------------------------------------------------------------- /libbz2-rs-sys/include/bzlib.h: -------------------------------------------------------------------------------- 1 | ../../bzlib.h -------------------------------------------------------------------------------- /libbz2-rs-sys/src/allocator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys/src/allocator.rs -------------------------------------------------------------------------------- /libbz2-rs-sys/src/blocksort.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys/src/blocksort.rs -------------------------------------------------------------------------------- /libbz2-rs-sys/src/bzlib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys/src/bzlib.rs -------------------------------------------------------------------------------- /libbz2-rs-sys/src/compress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys/src/compress.rs -------------------------------------------------------------------------------- /libbz2-rs-sys/src/crctable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys/src/crctable.rs -------------------------------------------------------------------------------- /libbz2-rs-sys/src/decompress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys/src/decompress.rs -------------------------------------------------------------------------------- /libbz2-rs-sys/src/high_level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys/src/high_level.rs -------------------------------------------------------------------------------- /libbz2-rs-sys/src/huffman.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys/src/huffman.rs -------------------------------------------------------------------------------- /libbz2-rs-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys/src/lib.rs -------------------------------------------------------------------------------- /libbz2-rs-sys/src/randtable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2-rs-sys/src/randtable.rs -------------------------------------------------------------------------------- /libbz2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/libbz2.def -------------------------------------------------------------------------------- /man/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/man/CMakeLists.txt -------------------------------------------------------------------------------- /man/bzdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/man/bzdiff.1 -------------------------------------------------------------------------------- /man/bzgrep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/man/bzgrep.1 -------------------------------------------------------------------------------- /man/bzip2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/man/bzip2.1 -------------------------------------------------------------------------------- /man/bzip2.1.preformatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/man/bzip2.1.preformatted -------------------------------------------------------------------------------- /man/bzmore.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/man/bzmore.1 -------------------------------------------------------------------------------- /man/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/man/meson.build -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/meson_options.txt -------------------------------------------------------------------------------- /mk251.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/mk251.c -------------------------------------------------------------------------------- /patches-not-included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/patches-not-included.txt -------------------------------------------------------------------------------- /randtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/randtable.c -------------------------------------------------------------------------------- /silesia-small.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/silesia-small.tar -------------------------------------------------------------------------------- /spewG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/spewG.c -------------------------------------------------------------------------------- /test-libbz2-rs-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/test-libbz2-rs-sys/Cargo.toml -------------------------------------------------------------------------------- /test-libbz2-rs-sys/examples/compress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/test-libbz2-rs-sys/examples/compress.rs -------------------------------------------------------------------------------- /test-libbz2-rs-sys/examples/decompress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/test-libbz2-rs-sys/examples/decompress.rs -------------------------------------------------------------------------------- /test-libbz2-rs-sys/src/chunked.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/test-libbz2-rs-sys/src/chunked.rs -------------------------------------------------------------------------------- /test-libbz2-rs-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/test-libbz2-rs-sys/src/lib.rs -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/compress-sample1-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/compress-sample1-log.txt -------------------------------------------------------------------------------- /tests/input/quick/sample1.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/input/quick/sample1.bz2 -------------------------------------------------------------------------------- /tests/input/quick/sample1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/input/quick/sample1.ref -------------------------------------------------------------------------------- /tests/input/quick/sample2.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/input/quick/sample2.bz2 -------------------------------------------------------------------------------- /tests/input/quick/sample2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/input/quick/sample2.ref -------------------------------------------------------------------------------- /tests/input/quick/sample3.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/input/quick/sample3.bz2 -------------------------------------------------------------------------------- /tests/input/quick/sample3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/input/quick/sample3.ref -------------------------------------------------------------------------------- /tests/input/randomized-blocks.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/input/randomized-blocks.bin -------------------------------------------------------------------------------- /tests/large_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/large_test.py -------------------------------------------------------------------------------- /tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/meson.build -------------------------------------------------------------------------------- /tests/quick.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/quick.rs -------------------------------------------------------------------------------- /tests/quick_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/quick_test.py -------------------------------------------------------------------------------- /tests/recover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/recover.rs -------------------------------------------------------------------------------- /tests/testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/tests/testcase.py -------------------------------------------------------------------------------- /unzcrash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/unzcrash.c -------------------------------------------------------------------------------- /version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/version.rc -------------------------------------------------------------------------------- /version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trifectatechfoundation/libbzip2-rs/HEAD/version.rc.in --------------------------------------------------------------------------------