zstd-native-ruby 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +4 -2
- data/README.md +50 -23
- data/ext/zstd_native/Makefile +269 -0
- data/ext/zstd_native/extconf.rb +37 -0
- data/{vendor → ext/zstd_native}/zstd/CONTRIBUTING.md +1 -6
- data/{vendor → ext/zstd_native}/zstd/Makefile +6 -5
- data/{vendor → ext/zstd_native}/zstd/README.md +35 -42
- data/ext/zstd_native/zstd/build/cmake/CMakeLists.txt +228 -0
- data/{vendor → ext/zstd_native}/zstd/build/cmake/CMakeModules/AddZstdCompilationFlags.cmake +19 -21
- data/{vendor → ext/zstd_native}/zstd/build/cmake/README.md +0 -9
- data/{vendor → ext/zstd_native}/zstd/build/cmake/lib/CMakeLists.txt +6 -9
- data/{vendor → ext/zstd_native}/zstd/build/meson/lib/meson.build +0 -4
- data/{vendor → ext/zstd_native}/zstd/build/meson/meson.build +2 -1
- data/{vendor → ext/zstd_native}/zstd/contrib/externalSequenceProducer/main.c +2 -3
- data/{vendor → ext/zstd_native}/zstd/contrib/largeNbDicts/largeNbDicts.c +0 -2
- data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/linux_zstd.h +0 -166
- data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/zstd_compress_module.c +0 -49
- data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/zstd_decompress_module.c +0 -36
- data/{vendor → ext/zstd_native}/zstd/contrib/premake/zstd.lua +0 -1
- data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/Logging.h +0 -1
- data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/examples/Makefile +1 -3
- data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/examples/parallel_compression.c +84 -124
- data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/examples/parallel_processing.c +5 -2
- data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/tests/Makefile +2 -22
- data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/tests/seekable_tests.c +0 -12
- data/{vendor → ext/zstd_native}/zstd/doc/zstd_compression_format.md +2 -3
- data/{vendor → ext/zstd_native}/zstd/doc/zstd_manual.html +24 -31
- data/{vendor → ext/zstd_native}/zstd/lib/Makefile +9 -9
- data/{vendor → ext/zstd_native}/zstd/lib/README.md +4 -23
- data/{vendor → ext/zstd_native}/zstd/lib/common/bits.h +1 -1
- data/{vendor → ext/zstd_native}/zstd/lib/common/compiler.h +6 -24
- data/ext/zstd_native/zstd/lib/common/debug.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/common/entropy_common.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/common/error_private.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/common/fse_decompress.o +0 -0
- data/ext/zstd_native/zstd/lib/common/pool.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/common/portability_macros.h +0 -19
- data/{vendor → ext/zstd_native}/zstd/lib/common/threading.c +2 -16
- data/ext/zstd_native/zstd/lib/common/threading.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/common/xxhash.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/common/zstd_common.c +0 -9
- data/ext/zstd_native/zstd/lib/common/zstd_common.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/common/zstd_internal.h +2 -4
- data/{vendor → ext/zstd_native}/zstd/lib/compress/fse_compress.o +0 -0
- data/ext/zstd_native/zstd/lib/compress/hist.c +191 -0
- data/{vendor → ext/zstd_native}/zstd/lib/compress/hist.h +0 -4
- data/ext/zstd_native/zstd/lib/compress/hist.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/compress/huf_compress.c +0 -1
- data/{vendor → ext/zstd_native}/zstd/lib/compress/huf_compress.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_compress.c +16 -535
- data/ext/zstd_native/zstd/lib/compress/zstd_compress.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_compress_internal.h +3 -3
- data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_compress_literals.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_compress_sequences.o +0 -0
- data/ext/zstd_native/zstd/lib/compress/zstd_compress_superblock.o +0 -0
- data/ext/zstd_native/zstd/lib/compress/zstd_double_fast.o +0 -0
- data/ext/zstd_native/zstd/lib/compress/zstd_fast.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_lazy.c +3 -47
- data/ext/zstd_native/zstd/lib/compress/zstd_lazy.o +0 -0
- data/ext/zstd_native/zstd/lib/compress/zstd_ldm.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_opt.c +10 -2
- data/ext/zstd_native/zstd/lib/compress/zstd_opt.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_preSplit.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/compress/zstdmt_compress.c +14 -15
- data/ext/zstd_native/zstd/lib/compress/zstdmt_compress.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/decompress/huf_decompress.c +48 -57
- data/ext/zstd_native/zstd/lib/decompress/huf_decompress.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/decompress/huf_decompress_amd64.S +18 -182
- data/{vendor → ext/zstd_native}/zstd/lib/decompress/zstd_ddict.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/decompress/zstd_decompress.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/decompress/zstd_decompress_block.c +65 -167
- data/ext/zstd_native/zstd/lib/decompress/zstd_decompress_block.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/dictBuilder/cover.c +67 -98
- data/ext/zstd_native/zstd/lib/dictBuilder/cover.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/dictBuilder/divsufsort.c +4 -4
- data/ext/zstd_native/zstd/lib/dictBuilder/divsufsort.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/dictBuilder/fastcover.c +40 -39
- data/ext/zstd_native/zstd/lib/dictBuilder/fastcover.o +0 -0
- data/{vendor → ext/zstd_native}/zstd/lib/dictBuilder/zdict.c +14 -18
- data/ext/zstd_native/zstd/lib/dictBuilder/zdict.o +0 -0
- data/ext/zstd_native/zstd/lib/dll/example/build_package.bat +20 -0
- data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v01.c +5 -6
- data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v03.c +1 -1
- data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v04.c +1 -1
- data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v05.c +1 -1
- data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v06.c +1 -1
- data/{vendor → ext/zstd_native}/zstd/lib/libzstd.mk +1 -4
- data/{vendor → ext/zstd_native}/zstd/lib/libzstd.pc.in +0 -1
- data/{vendor → ext/zstd_native}/zstd/lib/zstd.h +30 -41
- data/{vendor → ext/zstd_native}/zstd/programs/Makefile +8 -8
- data/{vendor → ext/zstd_native}/zstd/programs/README.md +1 -1
- data/{vendor → ext/zstd_native}/zstd/programs/benchzstd.c +62 -51
- data/{vendor → ext/zstd_native}/zstd/programs/benchzstd.h +2 -2
- data/{vendor → ext/zstd_native}/zstd/programs/dibio.c +5 -12
- data/{vendor → ext/zstd_native}/zstd/programs/fileio.c +152 -405
- data/{vendor → ext/zstd_native}/zstd/programs/fileio.h +1 -1
- data/{vendor → ext/zstd_native}/zstd/programs/fileio_types.h +1 -1
- data/{vendor → ext/zstd_native}/zstd/programs/timefn.c +1 -3
- data/{vendor → ext/zstd_native}/zstd/programs/util.c +65 -153
- data/{vendor → ext/zstd_native}/zstd/programs/util.h +2 -4
- data/{vendor → ext/zstd_native}/zstd/programs/zstd.1 +37 -225
- data/{vendor → ext/zstd_native}/zstd/programs/zstd.1.md +14 -14
- data/{vendor → ext/zstd_native}/zstd/programs/zstdcli.c +65 -82
- data/{vendor → ext/zstd_native}/zstd/programs/zstdcli_trace.c +1 -2
- data/{vendor → ext/zstd_native}/zstd/programs/zstdgrep.1 +1 -1
- data/{vendor → ext/zstd_native}/zstd/programs/zstdless.1 +1 -1
- data/{vendor → ext/zstd_native}/zstd/tests/Makefile +4 -8
- data/{vendor → ext/zstd_native}/zstd/tests/automated_benchmarking.py +2 -2
- data/{vendor/zstd/tests/largeDictionary.c → ext/zstd_native/zstd/tests/bigdict.c} +18 -16
- data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/help.sh.stdout.glob +1 -1
- data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/common/platform.sh +0 -11
- data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/multi-threaded.sh +0 -7
- data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/multi-threaded.sh.stderr.exact +0 -10
- data/ext/zstd_native/zstd/tests/cli-tests/dict-builder/no-inputs.sh.stderr.exact +5 -0
- data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/compress-file-to-dir-without-write-perm.sh.stderr.exact +0 -4
- data/{vendor/zstd/tests/cli-tests/file-stat/compress-file-to-file.sh.stderr.glob → ext/zstd_native/zstd/tests/cli-tests/file-stat/compress-file-to-file.sh.stderr.exact} +0 -4
- data/{vendor/zstd/tests/cli-tests/file-stat/compress-stdin-to-file.sh.stderr.glob → ext/zstd_native/zstd/tests/cli-tests/file-stat/compress-stdin-to-file.sh.stderr.exact} +0 -4
- data/{vendor/zstd/tests/cli-tests/file-stat/decompress-file-to-file.sh.stderr.glob → ext/zstd_native/zstd/tests/cli-tests/file-stat/decompress-file-to-file.sh.stderr.exact} +0 -4
- data/{vendor/zstd/tests/cli-tests/file-stat/decompress-stdin-to-file.sh.stderr.glob → ext/zstd_native/zstd/tests/cli-tests/file-stat/decompress-stdin-to-file.sh.stderr.exact} +0 -4
- data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/run.py +1 -2
- data/{vendor → ext/zstd_native}/zstd/tests/fullbench.c +0 -1
- data/{vendor → ext/zstd_native}/zstd/tests/fuzz/fuzz_helpers.c +3 -2
- data/{vendor → ext/zstd_native}/zstd/tests/fuzz/fuzz_helpers.h +0 -1
- data/{vendor → ext/zstd_native}/zstd/tests/fuzzer.c +0 -335
- data/ext/zstd_native/zstd/tests/largeDictionary.c +128 -0
- data/{vendor → ext/zstd_native}/zstd/tests/legacy.c +0 -2
- data/{vendor → ext/zstd_native}/zstd/tests/longmatch.c +17 -38
- data/{vendor → ext/zstd_native}/zstd/tests/paramgrill.c +3 -3
- data/{vendor → ext/zstd_native}/zstd/tests/playTests.sh +34 -35
- data/{vendor → ext/zstd_native}/zstd/tests/regression/method.c +3 -3
- data/{vendor → ext/zstd_native}/zstd/tests/zstreamtest.c +1 -1
- data/ext/zstd_native/zstd_native.c +852 -0
- data/ext/zstd_native/zstd_native.o +0 -0
- data/ext/zstd_native/zstd_native.so +0 -0
- data/lib/zstd_native/version.rb +3 -0
- data/lib/zstd_native/zstd_native.so +0 -0
- data/lib/zstd_native.rb +6 -0
- metadata +647 -657
- data/CLAUDE.md +0 -101
- data/ext/zstd_ruby/extconf.rb +0 -35
- data/ext/zstd_ruby/zstd_ruby.c +0 -221
- data/lib/zstd_ruby.rb +0 -68
- data/vendor/zstd/CMakeLists.txt +0 -11
- data/vendor/zstd/build/cmake/CMakeLists.txt +0 -81
- data/vendor/zstd/build/cmake/CMakeModules/ZstdBuild.cmake +0 -42
- data/vendor/zstd/build/cmake/CMakeModules/ZstdDependencies.cmake +0 -30
- data/vendor/zstd/build/cmake/CMakeModules/ZstdOptions.cmake +0 -68
- data/vendor/zstd/build/cmake/CMakeModules/ZstdPackage.cmake +0 -42
- data/vendor/zstd/build/cmake/CMakeModules/ZstdVersion.cmake +0 -31
- data/vendor/zstd/lib/common/debug.o +0 -0
- data/vendor/zstd/lib/common/pool.o +0 -0
- data/vendor/zstd/lib/common/threading.o +0 -0
- data/vendor/zstd/lib/common/zstd_common.o +0 -0
- data/vendor/zstd/lib/compress/hist.c +0 -446
- data/vendor/zstd/lib/compress/hist.o +0 -0
- data/vendor/zstd/lib/compress/zstd_compress.o +0 -0
- data/vendor/zstd/lib/compress/zstd_compress_superblock.o +0 -0
- data/vendor/zstd/lib/compress/zstd_double_fast.o +0 -0
- data/vendor/zstd/lib/compress/zstd_fast.o +0 -0
- data/vendor/zstd/lib/compress/zstd_lazy.o +0 -0
- data/vendor/zstd/lib/compress/zstd_ldm.o +0 -0
- data/vendor/zstd/lib/compress/zstd_opt.o +0 -0
- data/vendor/zstd/lib/compress/zstdmt_compress.o +0 -0
- data/vendor/zstd/lib/decompress/huf_decompress.o +0 -0
- data/vendor/zstd/lib/decompress/zstd_decompress_block.o +0 -0
- data/vendor/zstd/lib/dll/example/build_package.bat +0 -55
- data/vendor/zstd/lib/install_oses.mk +0 -17
- data/vendor/zstd/tests/cli-tests/bin/unzstd +0 -1
- data/vendor/zstd/tests/cli-tests/bin/zstdcat +0 -1
- data/vendor/zstd/tests/cli-tests/determinism/basic.sh +0 -36
- data/vendor/zstd/tests/cli-tests/determinism/basic.sh.stderr.exact +0 -0
- data/vendor/zstd/tests/cli-tests/determinism/basic.sh.stdout.exact +0 -880
- data/vendor/zstd/tests/cli-tests/determinism/multithread.sh +0 -45
- data/vendor/zstd/tests/cli-tests/determinism/multithread.sh.stderr.exact +0 -0
- data/vendor/zstd/tests/cli-tests/determinism/multithread.sh.stdout.exact +0 -260
- data/vendor/zstd/tests/cli-tests/determinism/reuse.sh +0 -44
- data/vendor/zstd/tests/cli-tests/determinism/reuse.sh.stderr.exact +0 -0
- data/vendor/zstd/tests/cli-tests/determinism/reuse.sh.stdout.exact +0 -19
- data/vendor/zstd/tests/cli-tests/determinism/setup +0 -5
- data/vendor/zstd/tests/cli-tests/determinism/setup_once +0 -30
- data/vendor/zstd/tests/cli-tests/dict-builder/no-inputs.sh.stderr.exact +0 -5
- data/vendor/zstd/tests/test_process_substitution.bash +0 -92
- /data/{vendor → ext/zstd_native}/zstd/CHANGELOG +0 -0
- /data/{vendor → ext/zstd_native}/zstd/CODE_OF_CONDUCT.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/COPYING +0 -0
- /data/{vendor → ext/zstd_native}/zstd/LICENSE +0 -0
- /data/{vendor → ext/zstd_native}/zstd/Package.swift +0 -0
- /data/{vendor → ext/zstd_native}/zstd/SECURITY.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/TESTING.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/LICENSE +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2008/fullbench/fullbench.vcproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2008/fuzzer/fuzzer.vcproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2008/zstd/zstd.vcproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2008/zstd.sln +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2008/zstdlib/zstdlib.vcproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2010/CompileAsCpp.props +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2010/datagen/datagen.vcxproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2010/fullbench/fullbench.vcxproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2010/fuzzer/fuzzer.vcxproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2010/libzstd/libzstd.vcxproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2010/libzstd-dll/libzstd-dll.rc +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2010/libzstd-dll/libzstd-dll.vcxproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2010/zstd/zstd.rc +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2010/zstd/zstd.vcxproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS2010/zstd.sln +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS_scripts/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS_scripts/build.VS2010.cmd +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS_scripts/build.VS2012.cmd +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS_scripts/build.VS2013.cmd +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS_scripts/build.VS2015.cmd +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS_scripts/build.VS2017.cmd +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS_scripts/build.VS2017Community.cmd +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS_scripts/build.VS2017Enterprise.cmd +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS_scripts/build.VS2017Professional.cmd +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS_scripts/build.VSPreview.cmd +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/VS_scripts/build.generic.cmd +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/cmake/CMakeModules/FindLibLZ4.cmake +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/cmake/CMakeModules/GetZstdLibraryVersion.cmake +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/cmake/CMakeModules/JoinPaths.cmake +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/cmake/contrib/CMakeLists.txt +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/cmake/contrib/gen_html/CMakeLists.txt +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/cmake/contrib/pzstd/CMakeLists.txt +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/cmake/lib/cmake_uninstall.cmake.in +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/cmake/programs/CMakeLists.txt +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/cmake/tests/CMakeLists.txt +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/cmake/zstdConfig.cmake.in +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/meson/GetZstdLibraryVersion.py +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/meson/InstallSymlink.py +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/meson/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/meson/contrib/gen_html/meson.build +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/meson/contrib/meson.build +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/meson/contrib/pzstd/meson.build +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/meson/meson_options.txt +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/meson/programs/meson.build +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/meson/tests/meson.build +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/meson/tests/valgrindTest.py +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/build_decoder_test.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/build_library_test.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/combine.py +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/combine.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/create_single_file_decoder.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/create_single_file_library.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/examples/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/examples/emscripten.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/examples/roundtrip.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/examples/shell.html +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/examples/simple.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/examples/testcard-dxt1.inl +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/examples/testcard-zstd.inl +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/examples/testcard.png +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/zstd-in.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/build/single_file_libs/zstddeclib-in.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/VS2005/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/VS2005/fullbench/fullbench.vcproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/VS2005/fuzzer/fuzzer.vcproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/VS2005/zstd/zstd.vcproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/VS2005/zstd.sln +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/VS2005/zstdlib/zstdlib.vcproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/cleanTabs +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/diagnose_corruption/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/diagnose_corruption/check_flipped_bits.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/docker/Dockerfile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/docker/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/externalSequenceProducer/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/externalSequenceProducer/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/externalSequenceProducer/sequence_producer.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/externalSequenceProducer/sequence_producer.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/freestanding_lib/freestanding.py +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/gen_html/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/gen_html/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/gen_html/gen-zstd-manual.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/gen_html/gen_html.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/largeNbDicts/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/largeNbDicts/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/btrfs-benchmark.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/btrfs-extract-benchmark.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/decompress_sources.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/linux.mk +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/mem.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/squashfs-benchmark.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/include/linux/compiler.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/include/linux/errno.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/include/linux/kernel.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/include/linux/limits.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/include/linux/math64.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/include/linux/module.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/include/linux/printk.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/include/linux/stddef.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/include/linux/swab.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/include/linux/types.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/include/linux/unaligned.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/include/linux/xxhash.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/macro-test.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/static_test.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/test/test.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/zstd_common_module.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/linux-kernel/zstd_deps.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/match_finders/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/match_finders/zstd_edist.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/match_finders/zstd_edist.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/premake/premake4.lua +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/BUCK +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/ErrorHolder.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/Options.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/Options.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/Pzstd.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/Pzstd.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/SkippableFrame.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/SkippableFrame.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/images/Cspeed.png +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/images/Dspeed.png +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/main.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/test/BUCK +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/test/OptionsTest.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/test/PzstdTest.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/test/RoundTrip.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/test/RoundTripTest.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/BUCK +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/Buffer.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/FileSystem.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/Likely.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/Portability.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/Range.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/ResourcePool.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/ScopeGuard.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/ThreadPool.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/WorkQueue.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/test/BUCK +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/test/BufferTest.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/test/RangeTest.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/test/ResourcePoolTest.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/test/ScopeGuardTest.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/test/ThreadPoolTest.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/pzstd/utils/test/WorkQueueTest.cpp +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/recovery/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/recovery/recover_directory.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/examples/seekable_compression.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/examples/seekable_decompression.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/examples/seekable_decompression_mem.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/zstd_seekable.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/zstd_seekable_compression_format.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/zstdseek_compress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/seekable_format/zstdseek_decompress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/seqBench/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/seqBench/seqBench.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/contrib/snap/snapcraft.yaml +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/decompressor_errata.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/decompressor_permissive.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/educational_decoder/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/educational_decoder/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/educational_decoder/harness.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/educational_decoder/zstd_decompress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/educational_decoder/zstd_decompress.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/images/CSpeed2.png +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/images/DCspeed5.png +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/images/DSpeed3.png +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/images/cdict_v136.png +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/images/dict-cr.png +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/images/dict-cs.png +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/images/dict-ds.png +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/images/zstd_cdict_v1_3_5.png +0 -0
- /data/{vendor → ext/zstd_native}/zstd/doc/images/zstd_logo86.png +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/common.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/dictionary_compression.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/dictionary_decompression.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/multiple_simple_compression.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/multiple_streaming_compression.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/simple_compression.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/simple_decompression.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/streaming_compression.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/streaming_compression_thread_pool.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/streaming_decompression.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/examples/streaming_memory_usage.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/BUCK +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/allocations.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/bitstream.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/cpu.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/debug.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/debug.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/entropy_common.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/error_private.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/error_private.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/fse.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/fse_decompress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/huf.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/mem.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/pool.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/pool.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/threading.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/xxhash.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/xxhash.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/zstd_deps.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/common/zstd_trace.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/clevels.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/fse_compress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_compress_literals.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_compress_literals.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_compress_sequences.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_compress_sequences.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_compress_superblock.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_compress_superblock.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_cwksp.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_double_fast.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_double_fast.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_fast.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_fast.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_lazy.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_ldm.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_ldm.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_ldm_geartab.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_opt.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_preSplit.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstd_preSplit.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/compress/zstdmt_compress.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/decompress/zstd_ddict.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/decompress/zstd_ddict.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/decompress/zstd_decompress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/decompress/zstd_decompress_block.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/decompress/zstd_decompress_internal.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/deprecated/zbuff.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/deprecated/zbuff_common.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/deprecated/zbuff_compress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/deprecated/zbuff_decompress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/dictBuilder/cover.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/dictBuilder/divsufsort.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/dll/example/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/dll/example/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/dll/example/fullbench-dll.sln +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/dll/example/fullbench-dll.vcxproj +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_legacy.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v01.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v02.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v02.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v03.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v04.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v05.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v06.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v07.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/legacy/zstd_v07.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/module.modulemap +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/zdict.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/lib/zstd_errors.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/BUCK +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/benchfn.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/benchfn.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/datagen.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/datagen.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/dibio.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/fileio_asyncio.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/fileio_asyncio.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/fileio_common.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/lorem.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/lorem.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/platform.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/timefn.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/windres/verrsrc.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/windres/zstd.rc +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/windres/zstd32.res +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/windres/zstd64.res +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/zstdcli_trace.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/zstdgrep +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/zstdgrep.1.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/zstdless +0 -0
- /data/{vendor → ext/zstd_native}/zstd/programs/zstdless.1.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/DEPRECATED-test-zstd-speed.py +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/checkTag.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/check_size.py +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/args.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/args.sh.exit +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/args.sh.stderr.glob +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/help.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/memlimit.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/memlimit.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/memlimit.sh.stdout.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/output_dir.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/output_dir.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/output_dir.sh.stdout.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/version.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/basic/version.sh.stdout.glob +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/bin/cmp_size +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/bin/datagen +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/bin/die +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/bin/println +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/bin/zstd +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/bin/zstdgrep +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/bin/zstdless +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/cltools/setup +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/cltools/zstdgrep.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/cltools/zstdgrep.sh.exit +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/cltools/zstdgrep.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/cltools/zstdgrep.sh.stdout.glob +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/cltools/zstdless.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/cltools/zstdless.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/cltools/zstdless.sh.stdout.glob +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/common/format.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/common/mtime.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/common/permissions.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/adapt.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/basic.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/compress-literals.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/format.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/golden.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/gzip-compat.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/levels.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/levels.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/long-distance-matcher.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/multiple-files.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/multiple-files.sh.stdout.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/row-match-finder.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/setup +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/stream-size.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/verbose-wlog.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/verbose-wlog.sh.stderr.glob +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/verbose-wlog.sh.stdout.glob +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/window-resize.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/window-resize.sh.stderr.ignore +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/compression/window-resize.sh.stdout.glob +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/decompression/detectErrors.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/decompression/golden.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/decompression/pass-through.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/decompression/pass-through.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/decompression/pass-through.sh.stdout.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/dict-builder/empty-input.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/dict-builder/empty-input.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/dict-builder/no-inputs.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/dict-builder/no-inputs.sh.exit +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/dictionaries/dictionary-mismatch.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/dictionaries/dictionary-mismatch.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/dictionaries/golden.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/dictionaries/setup +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/dictionaries/setup_once +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-handling/directory-mirror.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-handling/directory-mirror.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-handling/directory-mirror.sh.stdout.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/compress-file-to-dir-without-write-perm.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/compress-file-to-file.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/compress-file-to-stdout.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/compress-file-to-stdout.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/compress-stdin-to-file.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/compress-stdin-to-stdout.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/compress-stdin-to-stdout.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/decompress-file-to-file.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/decompress-file-to-stdout.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/decompress-file-to-stdout.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/decompress-stdin-to-file.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/decompress-stdin-to-stdout.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/file-stat/decompress-stdin-to-stdout.sh.stderr.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/progress/no-progress.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/progress/no-progress.sh.stderr.glob +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/progress/progress.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/progress/progress.sh.stderr.glob +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/zstd-symlinks/setup +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/zstd-symlinks/zstdcat.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/cli-tests/zstd-symlinks/zstdcat.sh.stdout.exact +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/datagencli.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/decodecorpus.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/dict-files/zero-weight-dict +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/external_matchfinder.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/external_matchfinder.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/block_decompress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/block_round_trip.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/decompress_cross_format.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/decompress_dstSize_tooSmall.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/dictionary_decompress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/dictionary_loader.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/dictionary_round_trip.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/dictionary_stream_round_trip.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/fse_read_ncount.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/fuzz.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/fuzz.py +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/fuzz_data_producer.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/fuzz_data_producer.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/fuzz_third_party_seq_prod.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/generate_sequences.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/huf_decompress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/huf_round_trip.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/raw_dictionary_round_trip.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/regression_driver.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/seekable_roundtrip.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/seq_prod_fuzz_example/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/seq_prod_fuzz_example/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/seq_prod_fuzz_example/example_seq_prod.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/sequence_compression_api.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/simple_compress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/simple_decompress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/simple_round_trip.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/stream_decompress.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/stream_round_trip.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/zstd_frame_info.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/zstd_helpers.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/fuzz/zstd_helpers.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/golden-compression/PR-3517-block-splitter-corruption-test +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/golden-compression/http +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/golden-compression/huffman-compressed-larger +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/golden-compression/large-literal-and-match-lengths +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/golden-decompression/block-128k.zst +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/golden-decompression/empty-block.zst +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/golden-decompression/rle-first-block.zst +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/golden-decompression/zeroSeq_2B.zst +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/golden-decompression-errors/off0.bin.zst +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/golden-decompression-errors/truncated_huff_state.zst +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/golden-decompression-errors/zeroSeq_extraneous.zst +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/golden-dictionaries/http-dict-missing-symbols +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/gzip-env.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/helin-segv.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/help-version.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/hufts-segv.gz +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/hufts.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/init.cfg +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/init.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/keep.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/list.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/memcpy-abuse.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/mixed.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/null-suffix-clobber.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/stdin.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/test-driver.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/trailing-nul.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/unpack-invalid.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/z-suffix.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/zdiff.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/zgrep-context.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/zgrep-f.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/zgrep-signal.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/gzip/znew-k.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/invalidDictionaries.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/libzstd_builds.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/loremOut.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/loremOut.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/poolTests.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/rateLimiter.py +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/regression/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/regression/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/regression/config.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/regression/config.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/regression/data.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/regression/data.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/regression/levels.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/regression/method.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/regression/result.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/regression/result.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/regression/results.csv +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/regression/test.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/roundTripCrash.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/seqgen.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/seqgen.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/test-license.py +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/test-variants.sh +0 -0
- /data/{vendor → ext/zstd_native}/zstd/tests/test-zstd-versions.py +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/BUCK +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/Makefile +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/README.md +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/examples/example.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/examples/example_original.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/examples/fitblk.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/examples/fitblk_original.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/examples/minigzip.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/examples/zwrapbench.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/gzclose.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/gzcompatibility.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/gzguts.h +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/gzlib.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/gzread.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/gzwrite.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/zstd_zlibwrapper.c +0 -0
- /data/{vendor → ext/zstd_native}/zstd/zlibWrapper/zstd_zlibwrapper.h +0 -0
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zstd-native-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Greninger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-11-
|
|
11
|
+
date: 2025-11-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -52,670 +52,660 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '5.0'
|
|
55
|
-
description: A Ruby gem
|
|
56
|
-
library
|
|
57
|
-
|
|
58
|
-
configurable compression levels.
|
|
55
|
+
description: A Ruby gem providing full access to the Facebook Zstandard (zstd) compression
|
|
56
|
+
library via native C bindings. Includes all compression, decompression, streaming,
|
|
57
|
+
and dictionary features.
|
|
59
58
|
email:
|
|
60
59
|
- jgreninger@hotmail.com
|
|
61
60
|
executables: []
|
|
62
61
|
extensions:
|
|
63
|
-
- ext/
|
|
62
|
+
- ext/zstd_native/extconf.rb
|
|
64
63
|
extra_rdoc_files: []
|
|
65
64
|
files:
|
|
66
|
-
- CLAUDE.md
|
|
67
65
|
- LICENSE
|
|
68
66
|
- README.md
|
|
69
|
-
- ext/
|
|
70
|
-
- ext/
|
|
71
|
-
-
|
|
72
|
-
-
|
|
73
|
-
-
|
|
74
|
-
-
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
80
|
-
-
|
|
81
|
-
-
|
|
82
|
-
-
|
|
83
|
-
-
|
|
84
|
-
-
|
|
85
|
-
-
|
|
86
|
-
-
|
|
87
|
-
-
|
|
88
|
-
-
|
|
89
|
-
-
|
|
90
|
-
-
|
|
91
|
-
-
|
|
92
|
-
-
|
|
93
|
-
-
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
98
|
-
-
|
|
99
|
-
-
|
|
100
|
-
-
|
|
101
|
-
-
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
106
|
-
-
|
|
107
|
-
-
|
|
108
|
-
-
|
|
109
|
-
-
|
|
110
|
-
-
|
|
111
|
-
-
|
|
112
|
-
-
|
|
113
|
-
-
|
|
114
|
-
-
|
|
115
|
-
-
|
|
116
|
-
-
|
|
117
|
-
-
|
|
118
|
-
-
|
|
119
|
-
-
|
|
120
|
-
-
|
|
121
|
-
-
|
|
122
|
-
-
|
|
123
|
-
-
|
|
124
|
-
-
|
|
125
|
-
-
|
|
126
|
-
-
|
|
127
|
-
-
|
|
128
|
-
-
|
|
129
|
-
-
|
|
130
|
-
-
|
|
131
|
-
-
|
|
132
|
-
-
|
|
133
|
-
-
|
|
134
|
-
-
|
|
135
|
-
-
|
|
136
|
-
-
|
|
137
|
-
-
|
|
138
|
-
-
|
|
139
|
-
-
|
|
140
|
-
-
|
|
141
|
-
-
|
|
142
|
-
-
|
|
143
|
-
-
|
|
144
|
-
-
|
|
145
|
-
-
|
|
146
|
-
-
|
|
147
|
-
-
|
|
148
|
-
-
|
|
149
|
-
-
|
|
150
|
-
-
|
|
151
|
-
-
|
|
152
|
-
-
|
|
153
|
-
-
|
|
154
|
-
-
|
|
155
|
-
-
|
|
156
|
-
-
|
|
157
|
-
-
|
|
158
|
-
-
|
|
159
|
-
-
|
|
160
|
-
-
|
|
161
|
-
-
|
|
162
|
-
-
|
|
163
|
-
-
|
|
164
|
-
-
|
|
165
|
-
-
|
|
166
|
-
-
|
|
167
|
-
-
|
|
168
|
-
-
|
|
169
|
-
-
|
|
170
|
-
-
|
|
171
|
-
-
|
|
172
|
-
-
|
|
173
|
-
-
|
|
174
|
-
-
|
|
175
|
-
-
|
|
176
|
-
-
|
|
177
|
-
-
|
|
178
|
-
-
|
|
179
|
-
-
|
|
180
|
-
-
|
|
181
|
-
-
|
|
182
|
-
-
|
|
183
|
-
-
|
|
184
|
-
-
|
|
185
|
-
-
|
|
186
|
-
-
|
|
187
|
-
-
|
|
188
|
-
-
|
|
189
|
-
-
|
|
190
|
-
-
|
|
191
|
-
-
|
|
192
|
-
-
|
|
193
|
-
-
|
|
194
|
-
-
|
|
195
|
-
-
|
|
196
|
-
-
|
|
197
|
-
-
|
|
198
|
-
-
|
|
199
|
-
-
|
|
200
|
-
-
|
|
201
|
-
-
|
|
202
|
-
-
|
|
203
|
-
-
|
|
204
|
-
-
|
|
205
|
-
-
|
|
206
|
-
-
|
|
207
|
-
-
|
|
208
|
-
-
|
|
209
|
-
-
|
|
210
|
-
-
|
|
211
|
-
-
|
|
212
|
-
-
|
|
213
|
-
-
|
|
214
|
-
-
|
|
215
|
-
-
|
|
216
|
-
-
|
|
217
|
-
-
|
|
218
|
-
-
|
|
219
|
-
-
|
|
220
|
-
-
|
|
221
|
-
-
|
|
222
|
-
-
|
|
223
|
-
-
|
|
224
|
-
-
|
|
225
|
-
-
|
|
226
|
-
-
|
|
227
|
-
-
|
|
228
|
-
-
|
|
229
|
-
-
|
|
230
|
-
-
|
|
231
|
-
-
|
|
232
|
-
-
|
|
233
|
-
-
|
|
234
|
-
-
|
|
235
|
-
-
|
|
236
|
-
-
|
|
237
|
-
-
|
|
238
|
-
-
|
|
239
|
-
-
|
|
240
|
-
-
|
|
241
|
-
-
|
|
242
|
-
-
|
|
243
|
-
-
|
|
244
|
-
-
|
|
245
|
-
-
|
|
246
|
-
-
|
|
247
|
-
-
|
|
248
|
-
-
|
|
249
|
-
-
|
|
250
|
-
-
|
|
251
|
-
-
|
|
252
|
-
-
|
|
253
|
-
-
|
|
254
|
-
-
|
|
255
|
-
-
|
|
256
|
-
-
|
|
257
|
-
-
|
|
258
|
-
-
|
|
259
|
-
-
|
|
260
|
-
-
|
|
261
|
-
-
|
|
262
|
-
-
|
|
263
|
-
-
|
|
264
|
-
-
|
|
265
|
-
-
|
|
266
|
-
-
|
|
267
|
-
-
|
|
268
|
-
-
|
|
269
|
-
-
|
|
270
|
-
-
|
|
271
|
-
-
|
|
272
|
-
-
|
|
273
|
-
-
|
|
274
|
-
-
|
|
275
|
-
-
|
|
276
|
-
-
|
|
277
|
-
-
|
|
278
|
-
-
|
|
279
|
-
-
|
|
280
|
-
-
|
|
281
|
-
-
|
|
282
|
-
-
|
|
283
|
-
-
|
|
284
|
-
-
|
|
285
|
-
-
|
|
286
|
-
-
|
|
287
|
-
-
|
|
288
|
-
-
|
|
289
|
-
-
|
|
290
|
-
-
|
|
291
|
-
-
|
|
292
|
-
-
|
|
293
|
-
-
|
|
294
|
-
-
|
|
295
|
-
-
|
|
296
|
-
-
|
|
297
|
-
-
|
|
298
|
-
-
|
|
299
|
-
-
|
|
300
|
-
-
|
|
301
|
-
-
|
|
302
|
-
-
|
|
303
|
-
-
|
|
304
|
-
-
|
|
305
|
-
-
|
|
306
|
-
-
|
|
307
|
-
-
|
|
308
|
-
-
|
|
309
|
-
-
|
|
310
|
-
-
|
|
311
|
-
-
|
|
312
|
-
-
|
|
313
|
-
-
|
|
314
|
-
-
|
|
315
|
-
-
|
|
316
|
-
-
|
|
317
|
-
-
|
|
318
|
-
-
|
|
319
|
-
-
|
|
320
|
-
-
|
|
321
|
-
-
|
|
322
|
-
-
|
|
323
|
-
-
|
|
324
|
-
-
|
|
325
|
-
-
|
|
326
|
-
-
|
|
327
|
-
-
|
|
328
|
-
-
|
|
329
|
-
-
|
|
330
|
-
-
|
|
331
|
-
-
|
|
332
|
-
-
|
|
333
|
-
-
|
|
334
|
-
-
|
|
335
|
-
-
|
|
336
|
-
-
|
|
337
|
-
-
|
|
338
|
-
-
|
|
339
|
-
-
|
|
340
|
-
-
|
|
341
|
-
-
|
|
342
|
-
-
|
|
343
|
-
-
|
|
344
|
-
-
|
|
345
|
-
-
|
|
346
|
-
-
|
|
347
|
-
-
|
|
348
|
-
-
|
|
349
|
-
-
|
|
350
|
-
-
|
|
351
|
-
-
|
|
352
|
-
-
|
|
353
|
-
-
|
|
354
|
-
-
|
|
355
|
-
-
|
|
356
|
-
-
|
|
357
|
-
-
|
|
358
|
-
-
|
|
359
|
-
-
|
|
360
|
-
-
|
|
361
|
-
-
|
|
362
|
-
-
|
|
363
|
-
-
|
|
364
|
-
-
|
|
365
|
-
-
|
|
366
|
-
-
|
|
367
|
-
-
|
|
368
|
-
-
|
|
369
|
-
-
|
|
370
|
-
-
|
|
371
|
-
-
|
|
372
|
-
-
|
|
373
|
-
-
|
|
374
|
-
-
|
|
375
|
-
-
|
|
376
|
-
-
|
|
377
|
-
-
|
|
378
|
-
-
|
|
379
|
-
-
|
|
380
|
-
-
|
|
381
|
-
-
|
|
382
|
-
-
|
|
383
|
-
-
|
|
384
|
-
-
|
|
385
|
-
-
|
|
386
|
-
-
|
|
387
|
-
-
|
|
388
|
-
-
|
|
389
|
-
-
|
|
390
|
-
-
|
|
391
|
-
-
|
|
392
|
-
-
|
|
393
|
-
-
|
|
394
|
-
-
|
|
395
|
-
-
|
|
396
|
-
-
|
|
397
|
-
-
|
|
398
|
-
-
|
|
399
|
-
-
|
|
400
|
-
-
|
|
401
|
-
-
|
|
402
|
-
-
|
|
403
|
-
-
|
|
404
|
-
-
|
|
405
|
-
-
|
|
406
|
-
-
|
|
407
|
-
-
|
|
408
|
-
-
|
|
409
|
-
-
|
|
410
|
-
-
|
|
411
|
-
-
|
|
412
|
-
-
|
|
413
|
-
-
|
|
414
|
-
-
|
|
415
|
-
-
|
|
416
|
-
-
|
|
417
|
-
-
|
|
418
|
-
-
|
|
419
|
-
-
|
|
420
|
-
-
|
|
421
|
-
-
|
|
422
|
-
-
|
|
423
|
-
-
|
|
424
|
-
-
|
|
425
|
-
-
|
|
426
|
-
-
|
|
427
|
-
-
|
|
428
|
-
-
|
|
429
|
-
-
|
|
430
|
-
-
|
|
431
|
-
-
|
|
432
|
-
-
|
|
433
|
-
-
|
|
434
|
-
-
|
|
435
|
-
-
|
|
436
|
-
-
|
|
437
|
-
-
|
|
438
|
-
-
|
|
439
|
-
-
|
|
440
|
-
-
|
|
441
|
-
-
|
|
442
|
-
-
|
|
443
|
-
-
|
|
444
|
-
-
|
|
445
|
-
-
|
|
446
|
-
-
|
|
447
|
-
-
|
|
448
|
-
-
|
|
449
|
-
-
|
|
450
|
-
-
|
|
451
|
-
-
|
|
452
|
-
-
|
|
453
|
-
-
|
|
454
|
-
-
|
|
455
|
-
-
|
|
456
|
-
-
|
|
457
|
-
-
|
|
458
|
-
-
|
|
459
|
-
-
|
|
460
|
-
-
|
|
461
|
-
-
|
|
462
|
-
-
|
|
463
|
-
-
|
|
464
|
-
-
|
|
465
|
-
-
|
|
466
|
-
-
|
|
467
|
-
-
|
|
468
|
-
-
|
|
469
|
-
-
|
|
470
|
-
-
|
|
471
|
-
-
|
|
472
|
-
-
|
|
473
|
-
-
|
|
474
|
-
-
|
|
475
|
-
-
|
|
476
|
-
-
|
|
477
|
-
-
|
|
478
|
-
-
|
|
479
|
-
-
|
|
480
|
-
-
|
|
481
|
-
-
|
|
482
|
-
-
|
|
483
|
-
-
|
|
484
|
-
-
|
|
485
|
-
-
|
|
486
|
-
-
|
|
487
|
-
-
|
|
488
|
-
-
|
|
489
|
-
-
|
|
490
|
-
-
|
|
491
|
-
-
|
|
492
|
-
-
|
|
493
|
-
-
|
|
494
|
-
-
|
|
495
|
-
-
|
|
496
|
-
-
|
|
497
|
-
-
|
|
498
|
-
-
|
|
499
|
-
-
|
|
500
|
-
-
|
|
501
|
-
-
|
|
502
|
-
-
|
|
503
|
-
-
|
|
504
|
-
-
|
|
505
|
-
-
|
|
506
|
-
-
|
|
507
|
-
-
|
|
508
|
-
-
|
|
509
|
-
-
|
|
510
|
-
-
|
|
511
|
-
-
|
|
512
|
-
-
|
|
513
|
-
-
|
|
514
|
-
-
|
|
515
|
-
-
|
|
516
|
-
-
|
|
517
|
-
-
|
|
518
|
-
-
|
|
519
|
-
-
|
|
520
|
-
-
|
|
521
|
-
-
|
|
522
|
-
-
|
|
523
|
-
-
|
|
524
|
-
-
|
|
525
|
-
-
|
|
526
|
-
-
|
|
527
|
-
-
|
|
528
|
-
-
|
|
529
|
-
-
|
|
530
|
-
-
|
|
531
|
-
-
|
|
532
|
-
-
|
|
533
|
-
-
|
|
534
|
-
-
|
|
535
|
-
-
|
|
536
|
-
-
|
|
537
|
-
-
|
|
538
|
-
-
|
|
539
|
-
-
|
|
540
|
-
-
|
|
541
|
-
-
|
|
542
|
-
-
|
|
543
|
-
-
|
|
544
|
-
-
|
|
545
|
-
-
|
|
546
|
-
-
|
|
547
|
-
-
|
|
548
|
-
-
|
|
549
|
-
-
|
|
550
|
-
-
|
|
551
|
-
-
|
|
552
|
-
-
|
|
553
|
-
-
|
|
554
|
-
-
|
|
555
|
-
-
|
|
556
|
-
-
|
|
557
|
-
-
|
|
558
|
-
-
|
|
559
|
-
-
|
|
560
|
-
-
|
|
561
|
-
-
|
|
562
|
-
-
|
|
563
|
-
-
|
|
564
|
-
-
|
|
565
|
-
-
|
|
566
|
-
-
|
|
567
|
-
-
|
|
568
|
-
-
|
|
569
|
-
-
|
|
570
|
-
-
|
|
571
|
-
-
|
|
572
|
-
-
|
|
573
|
-
-
|
|
574
|
-
-
|
|
575
|
-
-
|
|
576
|
-
-
|
|
577
|
-
-
|
|
578
|
-
-
|
|
579
|
-
-
|
|
580
|
-
-
|
|
581
|
-
-
|
|
582
|
-
-
|
|
583
|
-
-
|
|
584
|
-
-
|
|
585
|
-
-
|
|
586
|
-
-
|
|
587
|
-
-
|
|
588
|
-
-
|
|
589
|
-
-
|
|
590
|
-
-
|
|
591
|
-
-
|
|
592
|
-
-
|
|
593
|
-
-
|
|
594
|
-
-
|
|
595
|
-
-
|
|
596
|
-
-
|
|
597
|
-
-
|
|
598
|
-
-
|
|
599
|
-
-
|
|
600
|
-
-
|
|
601
|
-
-
|
|
602
|
-
-
|
|
603
|
-
-
|
|
604
|
-
-
|
|
605
|
-
-
|
|
606
|
-
-
|
|
607
|
-
-
|
|
608
|
-
-
|
|
609
|
-
-
|
|
610
|
-
-
|
|
611
|
-
-
|
|
612
|
-
-
|
|
613
|
-
-
|
|
614
|
-
-
|
|
615
|
-
-
|
|
616
|
-
-
|
|
617
|
-
-
|
|
618
|
-
-
|
|
619
|
-
-
|
|
620
|
-
-
|
|
621
|
-
-
|
|
622
|
-
-
|
|
623
|
-
-
|
|
624
|
-
-
|
|
625
|
-
-
|
|
626
|
-
-
|
|
627
|
-
-
|
|
628
|
-
-
|
|
629
|
-
-
|
|
630
|
-
-
|
|
631
|
-
-
|
|
632
|
-
-
|
|
633
|
-
-
|
|
634
|
-
-
|
|
635
|
-
-
|
|
636
|
-
-
|
|
637
|
-
-
|
|
638
|
-
-
|
|
639
|
-
-
|
|
640
|
-
-
|
|
641
|
-
-
|
|
642
|
-
-
|
|
643
|
-
-
|
|
644
|
-
-
|
|
645
|
-
-
|
|
646
|
-
-
|
|
647
|
-
-
|
|
648
|
-
-
|
|
649
|
-
-
|
|
650
|
-
-
|
|
651
|
-
-
|
|
652
|
-
-
|
|
653
|
-
-
|
|
654
|
-
-
|
|
655
|
-
-
|
|
656
|
-
-
|
|
657
|
-
-
|
|
658
|
-
-
|
|
659
|
-
-
|
|
660
|
-
-
|
|
661
|
-
-
|
|
662
|
-
-
|
|
663
|
-
-
|
|
664
|
-
-
|
|
665
|
-
-
|
|
666
|
-
-
|
|
667
|
-
-
|
|
668
|
-
-
|
|
669
|
-
-
|
|
670
|
-
-
|
|
671
|
-
-
|
|
672
|
-
-
|
|
673
|
-
-
|
|
674
|
-
-
|
|
675
|
-
-
|
|
676
|
-
-
|
|
677
|
-
-
|
|
678
|
-
-
|
|
679
|
-
-
|
|
680
|
-
-
|
|
681
|
-
-
|
|
682
|
-
-
|
|
683
|
-
-
|
|
684
|
-
-
|
|
685
|
-
-
|
|
686
|
-
-
|
|
687
|
-
-
|
|
688
|
-
-
|
|
689
|
-
-
|
|
690
|
-
-
|
|
691
|
-
-
|
|
692
|
-
-
|
|
693
|
-
-
|
|
694
|
-
-
|
|
695
|
-
-
|
|
696
|
-
-
|
|
697
|
-
-
|
|
698
|
-
-
|
|
699
|
-
-
|
|
700
|
-
-
|
|
701
|
-
-
|
|
702
|
-
-
|
|
703
|
-
-
|
|
704
|
-
|
|
705
|
-
- vendor/zstd/zlibWrapper/examples/minigzip.c
|
|
706
|
-
- vendor/zstd/zlibWrapper/examples/zwrapbench.c
|
|
707
|
-
- vendor/zstd/zlibWrapper/gzclose.c
|
|
708
|
-
- vendor/zstd/zlibWrapper/gzcompatibility.h
|
|
709
|
-
- vendor/zstd/zlibWrapper/gzguts.h
|
|
710
|
-
- vendor/zstd/zlibWrapper/gzlib.c
|
|
711
|
-
- vendor/zstd/zlibWrapper/gzread.c
|
|
712
|
-
- vendor/zstd/zlibWrapper/gzwrite.c
|
|
713
|
-
- vendor/zstd/zlibWrapper/zstd_zlibwrapper.c
|
|
714
|
-
- vendor/zstd/zlibWrapper/zstd_zlibwrapper.h
|
|
715
|
-
homepage: https://github.com/jgreninger/zstd-native-ruby
|
|
67
|
+
- ext/zstd_native/Makefile
|
|
68
|
+
- ext/zstd_native/extconf.rb
|
|
69
|
+
- ext/zstd_native/zstd/CHANGELOG
|
|
70
|
+
- ext/zstd_native/zstd/CODE_OF_CONDUCT.md
|
|
71
|
+
- ext/zstd_native/zstd/CONTRIBUTING.md
|
|
72
|
+
- ext/zstd_native/zstd/COPYING
|
|
73
|
+
- ext/zstd_native/zstd/LICENSE
|
|
74
|
+
- ext/zstd_native/zstd/Makefile
|
|
75
|
+
- ext/zstd_native/zstd/Package.swift
|
|
76
|
+
- ext/zstd_native/zstd/README.md
|
|
77
|
+
- ext/zstd_native/zstd/SECURITY.md
|
|
78
|
+
- ext/zstd_native/zstd/TESTING.md
|
|
79
|
+
- ext/zstd_native/zstd/build/LICENSE
|
|
80
|
+
- ext/zstd_native/zstd/build/README.md
|
|
81
|
+
- ext/zstd_native/zstd/build/VS2008/fullbench/fullbench.vcproj
|
|
82
|
+
- ext/zstd_native/zstd/build/VS2008/fuzzer/fuzzer.vcproj
|
|
83
|
+
- ext/zstd_native/zstd/build/VS2008/zstd.sln
|
|
84
|
+
- ext/zstd_native/zstd/build/VS2008/zstd/zstd.vcproj
|
|
85
|
+
- ext/zstd_native/zstd/build/VS2008/zstdlib/zstdlib.vcproj
|
|
86
|
+
- ext/zstd_native/zstd/build/VS2010/CompileAsCpp.props
|
|
87
|
+
- ext/zstd_native/zstd/build/VS2010/datagen/datagen.vcxproj
|
|
88
|
+
- ext/zstd_native/zstd/build/VS2010/fullbench/fullbench.vcxproj
|
|
89
|
+
- ext/zstd_native/zstd/build/VS2010/fuzzer/fuzzer.vcxproj
|
|
90
|
+
- ext/zstd_native/zstd/build/VS2010/libzstd-dll/libzstd-dll.rc
|
|
91
|
+
- ext/zstd_native/zstd/build/VS2010/libzstd-dll/libzstd-dll.vcxproj
|
|
92
|
+
- ext/zstd_native/zstd/build/VS2010/libzstd/libzstd.vcxproj
|
|
93
|
+
- ext/zstd_native/zstd/build/VS2010/zstd.sln
|
|
94
|
+
- ext/zstd_native/zstd/build/VS2010/zstd/zstd.rc
|
|
95
|
+
- ext/zstd_native/zstd/build/VS2010/zstd/zstd.vcxproj
|
|
96
|
+
- ext/zstd_native/zstd/build/VS_scripts/README.md
|
|
97
|
+
- ext/zstd_native/zstd/build/VS_scripts/build.VS2010.cmd
|
|
98
|
+
- ext/zstd_native/zstd/build/VS_scripts/build.VS2012.cmd
|
|
99
|
+
- ext/zstd_native/zstd/build/VS_scripts/build.VS2013.cmd
|
|
100
|
+
- ext/zstd_native/zstd/build/VS_scripts/build.VS2015.cmd
|
|
101
|
+
- ext/zstd_native/zstd/build/VS_scripts/build.VS2017.cmd
|
|
102
|
+
- ext/zstd_native/zstd/build/VS_scripts/build.VS2017Community.cmd
|
|
103
|
+
- ext/zstd_native/zstd/build/VS_scripts/build.VS2017Enterprise.cmd
|
|
104
|
+
- ext/zstd_native/zstd/build/VS_scripts/build.VS2017Professional.cmd
|
|
105
|
+
- ext/zstd_native/zstd/build/VS_scripts/build.VSPreview.cmd
|
|
106
|
+
- ext/zstd_native/zstd/build/VS_scripts/build.generic.cmd
|
|
107
|
+
- ext/zstd_native/zstd/build/cmake/CMakeLists.txt
|
|
108
|
+
- ext/zstd_native/zstd/build/cmake/CMakeModules/AddZstdCompilationFlags.cmake
|
|
109
|
+
- ext/zstd_native/zstd/build/cmake/CMakeModules/FindLibLZ4.cmake
|
|
110
|
+
- ext/zstd_native/zstd/build/cmake/CMakeModules/GetZstdLibraryVersion.cmake
|
|
111
|
+
- ext/zstd_native/zstd/build/cmake/CMakeModules/JoinPaths.cmake
|
|
112
|
+
- ext/zstd_native/zstd/build/cmake/README.md
|
|
113
|
+
- ext/zstd_native/zstd/build/cmake/contrib/CMakeLists.txt
|
|
114
|
+
- ext/zstd_native/zstd/build/cmake/contrib/gen_html/CMakeLists.txt
|
|
115
|
+
- ext/zstd_native/zstd/build/cmake/contrib/pzstd/CMakeLists.txt
|
|
116
|
+
- ext/zstd_native/zstd/build/cmake/lib/CMakeLists.txt
|
|
117
|
+
- ext/zstd_native/zstd/build/cmake/lib/cmake_uninstall.cmake.in
|
|
118
|
+
- ext/zstd_native/zstd/build/cmake/programs/CMakeLists.txt
|
|
119
|
+
- ext/zstd_native/zstd/build/cmake/tests/CMakeLists.txt
|
|
120
|
+
- ext/zstd_native/zstd/build/cmake/zstdConfig.cmake.in
|
|
121
|
+
- ext/zstd_native/zstd/build/meson/GetZstdLibraryVersion.py
|
|
122
|
+
- ext/zstd_native/zstd/build/meson/InstallSymlink.py
|
|
123
|
+
- ext/zstd_native/zstd/build/meson/README.md
|
|
124
|
+
- ext/zstd_native/zstd/build/meson/contrib/gen_html/meson.build
|
|
125
|
+
- ext/zstd_native/zstd/build/meson/contrib/meson.build
|
|
126
|
+
- ext/zstd_native/zstd/build/meson/contrib/pzstd/meson.build
|
|
127
|
+
- ext/zstd_native/zstd/build/meson/lib/meson.build
|
|
128
|
+
- ext/zstd_native/zstd/build/meson/meson.build
|
|
129
|
+
- ext/zstd_native/zstd/build/meson/meson_options.txt
|
|
130
|
+
- ext/zstd_native/zstd/build/meson/programs/meson.build
|
|
131
|
+
- ext/zstd_native/zstd/build/meson/tests/meson.build
|
|
132
|
+
- ext/zstd_native/zstd/build/meson/tests/valgrindTest.py
|
|
133
|
+
- ext/zstd_native/zstd/build/single_file_libs/README.md
|
|
134
|
+
- ext/zstd_native/zstd/build/single_file_libs/build_decoder_test.sh
|
|
135
|
+
- ext/zstd_native/zstd/build/single_file_libs/build_library_test.sh
|
|
136
|
+
- ext/zstd_native/zstd/build/single_file_libs/combine.py
|
|
137
|
+
- ext/zstd_native/zstd/build/single_file_libs/combine.sh
|
|
138
|
+
- ext/zstd_native/zstd/build/single_file_libs/create_single_file_decoder.sh
|
|
139
|
+
- ext/zstd_native/zstd/build/single_file_libs/create_single_file_library.sh
|
|
140
|
+
- ext/zstd_native/zstd/build/single_file_libs/examples/README.md
|
|
141
|
+
- ext/zstd_native/zstd/build/single_file_libs/examples/emscripten.c
|
|
142
|
+
- ext/zstd_native/zstd/build/single_file_libs/examples/roundtrip.c
|
|
143
|
+
- ext/zstd_native/zstd/build/single_file_libs/examples/shell.html
|
|
144
|
+
- ext/zstd_native/zstd/build/single_file_libs/examples/simple.c
|
|
145
|
+
- ext/zstd_native/zstd/build/single_file_libs/examples/testcard-dxt1.inl
|
|
146
|
+
- ext/zstd_native/zstd/build/single_file_libs/examples/testcard-zstd.inl
|
|
147
|
+
- ext/zstd_native/zstd/build/single_file_libs/examples/testcard.png
|
|
148
|
+
- ext/zstd_native/zstd/build/single_file_libs/zstd-in.c
|
|
149
|
+
- ext/zstd_native/zstd/build/single_file_libs/zstddeclib-in.c
|
|
150
|
+
- ext/zstd_native/zstd/contrib/VS2005/README.md
|
|
151
|
+
- ext/zstd_native/zstd/contrib/VS2005/fullbench/fullbench.vcproj
|
|
152
|
+
- ext/zstd_native/zstd/contrib/VS2005/fuzzer/fuzzer.vcproj
|
|
153
|
+
- ext/zstd_native/zstd/contrib/VS2005/zstd.sln
|
|
154
|
+
- ext/zstd_native/zstd/contrib/VS2005/zstd/zstd.vcproj
|
|
155
|
+
- ext/zstd_native/zstd/contrib/VS2005/zstdlib/zstdlib.vcproj
|
|
156
|
+
- ext/zstd_native/zstd/contrib/cleanTabs
|
|
157
|
+
- ext/zstd_native/zstd/contrib/diagnose_corruption/Makefile
|
|
158
|
+
- ext/zstd_native/zstd/contrib/diagnose_corruption/check_flipped_bits.c
|
|
159
|
+
- ext/zstd_native/zstd/contrib/docker/Dockerfile
|
|
160
|
+
- ext/zstd_native/zstd/contrib/docker/README.md
|
|
161
|
+
- ext/zstd_native/zstd/contrib/externalSequenceProducer/Makefile
|
|
162
|
+
- ext/zstd_native/zstd/contrib/externalSequenceProducer/README.md
|
|
163
|
+
- ext/zstd_native/zstd/contrib/externalSequenceProducer/main.c
|
|
164
|
+
- ext/zstd_native/zstd/contrib/externalSequenceProducer/sequence_producer.c
|
|
165
|
+
- ext/zstd_native/zstd/contrib/externalSequenceProducer/sequence_producer.h
|
|
166
|
+
- ext/zstd_native/zstd/contrib/freestanding_lib/freestanding.py
|
|
167
|
+
- ext/zstd_native/zstd/contrib/gen_html/Makefile
|
|
168
|
+
- ext/zstd_native/zstd/contrib/gen_html/README.md
|
|
169
|
+
- ext/zstd_native/zstd/contrib/gen_html/gen-zstd-manual.sh
|
|
170
|
+
- ext/zstd_native/zstd/contrib/gen_html/gen_html.cpp
|
|
171
|
+
- ext/zstd_native/zstd/contrib/largeNbDicts/Makefile
|
|
172
|
+
- ext/zstd_native/zstd/contrib/largeNbDicts/README.md
|
|
173
|
+
- ext/zstd_native/zstd/contrib/largeNbDicts/largeNbDicts.c
|
|
174
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/Makefile
|
|
175
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/README.md
|
|
176
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/btrfs-benchmark.sh
|
|
177
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/btrfs-extract-benchmark.sh
|
|
178
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/decompress_sources.h
|
|
179
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/linux.mk
|
|
180
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/linux_zstd.h
|
|
181
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/mem.h
|
|
182
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/squashfs-benchmark.sh
|
|
183
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/Makefile
|
|
184
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/include/linux/compiler.h
|
|
185
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/include/linux/errno.h
|
|
186
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/include/linux/kernel.h
|
|
187
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/include/linux/limits.h
|
|
188
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/include/linux/math64.h
|
|
189
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/include/linux/module.h
|
|
190
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/include/linux/printk.h
|
|
191
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/include/linux/stddef.h
|
|
192
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/include/linux/swab.h
|
|
193
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/include/linux/types.h
|
|
194
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/include/linux/unaligned.h
|
|
195
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/include/linux/xxhash.h
|
|
196
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/macro-test.sh
|
|
197
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/static_test.c
|
|
198
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/test/test.c
|
|
199
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/zstd_common_module.c
|
|
200
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/zstd_compress_module.c
|
|
201
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/zstd_decompress_module.c
|
|
202
|
+
- ext/zstd_native/zstd/contrib/linux-kernel/zstd_deps.h
|
|
203
|
+
- ext/zstd_native/zstd/contrib/match_finders/README.md
|
|
204
|
+
- ext/zstd_native/zstd/contrib/match_finders/zstd_edist.c
|
|
205
|
+
- ext/zstd_native/zstd/contrib/match_finders/zstd_edist.h
|
|
206
|
+
- ext/zstd_native/zstd/contrib/premake/premake4.lua
|
|
207
|
+
- ext/zstd_native/zstd/contrib/premake/zstd.lua
|
|
208
|
+
- ext/zstd_native/zstd/contrib/pzstd/BUCK
|
|
209
|
+
- ext/zstd_native/zstd/contrib/pzstd/ErrorHolder.h
|
|
210
|
+
- ext/zstd_native/zstd/contrib/pzstd/Logging.h
|
|
211
|
+
- ext/zstd_native/zstd/contrib/pzstd/Makefile
|
|
212
|
+
- ext/zstd_native/zstd/contrib/pzstd/Options.cpp
|
|
213
|
+
- ext/zstd_native/zstd/contrib/pzstd/Options.h
|
|
214
|
+
- ext/zstd_native/zstd/contrib/pzstd/Pzstd.cpp
|
|
215
|
+
- ext/zstd_native/zstd/contrib/pzstd/Pzstd.h
|
|
216
|
+
- ext/zstd_native/zstd/contrib/pzstd/README.md
|
|
217
|
+
- ext/zstd_native/zstd/contrib/pzstd/SkippableFrame.cpp
|
|
218
|
+
- ext/zstd_native/zstd/contrib/pzstd/SkippableFrame.h
|
|
219
|
+
- ext/zstd_native/zstd/contrib/pzstd/images/Cspeed.png
|
|
220
|
+
- ext/zstd_native/zstd/contrib/pzstd/images/Dspeed.png
|
|
221
|
+
- ext/zstd_native/zstd/contrib/pzstd/main.cpp
|
|
222
|
+
- ext/zstd_native/zstd/contrib/pzstd/test/BUCK
|
|
223
|
+
- ext/zstd_native/zstd/contrib/pzstd/test/OptionsTest.cpp
|
|
224
|
+
- ext/zstd_native/zstd/contrib/pzstd/test/PzstdTest.cpp
|
|
225
|
+
- ext/zstd_native/zstd/contrib/pzstd/test/RoundTrip.h
|
|
226
|
+
- ext/zstd_native/zstd/contrib/pzstd/test/RoundTripTest.cpp
|
|
227
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/BUCK
|
|
228
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/Buffer.h
|
|
229
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/FileSystem.h
|
|
230
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/Likely.h
|
|
231
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/Portability.h
|
|
232
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/Range.h
|
|
233
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/ResourcePool.h
|
|
234
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/ScopeGuard.h
|
|
235
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/ThreadPool.h
|
|
236
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/WorkQueue.h
|
|
237
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/test/BUCK
|
|
238
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/test/BufferTest.cpp
|
|
239
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/test/RangeTest.cpp
|
|
240
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/test/ResourcePoolTest.cpp
|
|
241
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/test/ScopeGuardTest.cpp
|
|
242
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/test/ThreadPoolTest.cpp
|
|
243
|
+
- ext/zstd_native/zstd/contrib/pzstd/utils/test/WorkQueueTest.cpp
|
|
244
|
+
- ext/zstd_native/zstd/contrib/recovery/Makefile
|
|
245
|
+
- ext/zstd_native/zstd/contrib/recovery/recover_directory.c
|
|
246
|
+
- ext/zstd_native/zstd/contrib/seekable_format/README.md
|
|
247
|
+
- ext/zstd_native/zstd/contrib/seekable_format/examples/Makefile
|
|
248
|
+
- ext/zstd_native/zstd/contrib/seekable_format/examples/parallel_compression.c
|
|
249
|
+
- ext/zstd_native/zstd/contrib/seekable_format/examples/parallel_processing.c
|
|
250
|
+
- ext/zstd_native/zstd/contrib/seekable_format/examples/seekable_compression.c
|
|
251
|
+
- ext/zstd_native/zstd/contrib/seekable_format/examples/seekable_decompression.c
|
|
252
|
+
- ext/zstd_native/zstd/contrib/seekable_format/examples/seekable_decompression_mem.c
|
|
253
|
+
- ext/zstd_native/zstd/contrib/seekable_format/tests/Makefile
|
|
254
|
+
- ext/zstd_native/zstd/contrib/seekable_format/tests/seekable_tests.c
|
|
255
|
+
- ext/zstd_native/zstd/contrib/seekable_format/zstd_seekable.h
|
|
256
|
+
- ext/zstd_native/zstd/contrib/seekable_format/zstd_seekable_compression_format.md
|
|
257
|
+
- ext/zstd_native/zstd/contrib/seekable_format/zstdseek_compress.c
|
|
258
|
+
- ext/zstd_native/zstd/contrib/seekable_format/zstdseek_decompress.c
|
|
259
|
+
- ext/zstd_native/zstd/contrib/seqBench/Makefile
|
|
260
|
+
- ext/zstd_native/zstd/contrib/seqBench/seqBench.c
|
|
261
|
+
- ext/zstd_native/zstd/contrib/snap/snapcraft.yaml
|
|
262
|
+
- ext/zstd_native/zstd/doc/README.md
|
|
263
|
+
- ext/zstd_native/zstd/doc/decompressor_errata.md
|
|
264
|
+
- ext/zstd_native/zstd/doc/decompressor_permissive.md
|
|
265
|
+
- ext/zstd_native/zstd/doc/educational_decoder/Makefile
|
|
266
|
+
- ext/zstd_native/zstd/doc/educational_decoder/README.md
|
|
267
|
+
- ext/zstd_native/zstd/doc/educational_decoder/harness.c
|
|
268
|
+
- ext/zstd_native/zstd/doc/educational_decoder/zstd_decompress.c
|
|
269
|
+
- ext/zstd_native/zstd/doc/educational_decoder/zstd_decompress.h
|
|
270
|
+
- ext/zstd_native/zstd/doc/images/CSpeed2.png
|
|
271
|
+
- ext/zstd_native/zstd/doc/images/DCspeed5.png
|
|
272
|
+
- ext/zstd_native/zstd/doc/images/DSpeed3.png
|
|
273
|
+
- ext/zstd_native/zstd/doc/images/cdict_v136.png
|
|
274
|
+
- ext/zstd_native/zstd/doc/images/dict-cr.png
|
|
275
|
+
- ext/zstd_native/zstd/doc/images/dict-cs.png
|
|
276
|
+
- ext/zstd_native/zstd/doc/images/dict-ds.png
|
|
277
|
+
- ext/zstd_native/zstd/doc/images/zstd_cdict_v1_3_5.png
|
|
278
|
+
- ext/zstd_native/zstd/doc/images/zstd_logo86.png
|
|
279
|
+
- ext/zstd_native/zstd/doc/zstd_compression_format.md
|
|
280
|
+
- ext/zstd_native/zstd/doc/zstd_manual.html
|
|
281
|
+
- ext/zstd_native/zstd/examples/Makefile
|
|
282
|
+
- ext/zstd_native/zstd/examples/README.md
|
|
283
|
+
- ext/zstd_native/zstd/examples/common.h
|
|
284
|
+
- ext/zstd_native/zstd/examples/dictionary_compression.c
|
|
285
|
+
- ext/zstd_native/zstd/examples/dictionary_decompression.c
|
|
286
|
+
- ext/zstd_native/zstd/examples/multiple_simple_compression.c
|
|
287
|
+
- ext/zstd_native/zstd/examples/multiple_streaming_compression.c
|
|
288
|
+
- ext/zstd_native/zstd/examples/simple_compression.c
|
|
289
|
+
- ext/zstd_native/zstd/examples/simple_decompression.c
|
|
290
|
+
- ext/zstd_native/zstd/examples/streaming_compression.c
|
|
291
|
+
- ext/zstd_native/zstd/examples/streaming_compression_thread_pool.c
|
|
292
|
+
- ext/zstd_native/zstd/examples/streaming_decompression.c
|
|
293
|
+
- ext/zstd_native/zstd/examples/streaming_memory_usage.c
|
|
294
|
+
- ext/zstd_native/zstd/lib/BUCK
|
|
295
|
+
- ext/zstd_native/zstd/lib/Makefile
|
|
296
|
+
- ext/zstd_native/zstd/lib/README.md
|
|
297
|
+
- ext/zstd_native/zstd/lib/common/allocations.h
|
|
298
|
+
- ext/zstd_native/zstd/lib/common/bits.h
|
|
299
|
+
- ext/zstd_native/zstd/lib/common/bitstream.h
|
|
300
|
+
- ext/zstd_native/zstd/lib/common/compiler.h
|
|
301
|
+
- ext/zstd_native/zstd/lib/common/cpu.h
|
|
302
|
+
- ext/zstd_native/zstd/lib/common/debug.c
|
|
303
|
+
- ext/zstd_native/zstd/lib/common/debug.h
|
|
304
|
+
- ext/zstd_native/zstd/lib/common/debug.o
|
|
305
|
+
- ext/zstd_native/zstd/lib/common/entropy_common.c
|
|
306
|
+
- ext/zstd_native/zstd/lib/common/entropy_common.o
|
|
307
|
+
- ext/zstd_native/zstd/lib/common/error_private.c
|
|
308
|
+
- ext/zstd_native/zstd/lib/common/error_private.h
|
|
309
|
+
- ext/zstd_native/zstd/lib/common/error_private.o
|
|
310
|
+
- ext/zstd_native/zstd/lib/common/fse.h
|
|
311
|
+
- ext/zstd_native/zstd/lib/common/fse_decompress.c
|
|
312
|
+
- ext/zstd_native/zstd/lib/common/fse_decompress.o
|
|
313
|
+
- ext/zstd_native/zstd/lib/common/huf.h
|
|
314
|
+
- ext/zstd_native/zstd/lib/common/mem.h
|
|
315
|
+
- ext/zstd_native/zstd/lib/common/pool.c
|
|
316
|
+
- ext/zstd_native/zstd/lib/common/pool.h
|
|
317
|
+
- ext/zstd_native/zstd/lib/common/pool.o
|
|
318
|
+
- ext/zstd_native/zstd/lib/common/portability_macros.h
|
|
319
|
+
- ext/zstd_native/zstd/lib/common/threading.c
|
|
320
|
+
- ext/zstd_native/zstd/lib/common/threading.h
|
|
321
|
+
- ext/zstd_native/zstd/lib/common/threading.o
|
|
322
|
+
- ext/zstd_native/zstd/lib/common/xxhash.c
|
|
323
|
+
- ext/zstd_native/zstd/lib/common/xxhash.h
|
|
324
|
+
- ext/zstd_native/zstd/lib/common/xxhash.o
|
|
325
|
+
- ext/zstd_native/zstd/lib/common/zstd_common.c
|
|
326
|
+
- ext/zstd_native/zstd/lib/common/zstd_common.o
|
|
327
|
+
- ext/zstd_native/zstd/lib/common/zstd_deps.h
|
|
328
|
+
- ext/zstd_native/zstd/lib/common/zstd_internal.h
|
|
329
|
+
- ext/zstd_native/zstd/lib/common/zstd_trace.h
|
|
330
|
+
- ext/zstd_native/zstd/lib/compress/clevels.h
|
|
331
|
+
- ext/zstd_native/zstd/lib/compress/fse_compress.c
|
|
332
|
+
- ext/zstd_native/zstd/lib/compress/fse_compress.o
|
|
333
|
+
- ext/zstd_native/zstd/lib/compress/hist.c
|
|
334
|
+
- ext/zstd_native/zstd/lib/compress/hist.h
|
|
335
|
+
- ext/zstd_native/zstd/lib/compress/hist.o
|
|
336
|
+
- ext/zstd_native/zstd/lib/compress/huf_compress.c
|
|
337
|
+
- ext/zstd_native/zstd/lib/compress/huf_compress.o
|
|
338
|
+
- ext/zstd_native/zstd/lib/compress/zstd_compress.c
|
|
339
|
+
- ext/zstd_native/zstd/lib/compress/zstd_compress.o
|
|
340
|
+
- ext/zstd_native/zstd/lib/compress/zstd_compress_internal.h
|
|
341
|
+
- ext/zstd_native/zstd/lib/compress/zstd_compress_literals.c
|
|
342
|
+
- ext/zstd_native/zstd/lib/compress/zstd_compress_literals.h
|
|
343
|
+
- ext/zstd_native/zstd/lib/compress/zstd_compress_literals.o
|
|
344
|
+
- ext/zstd_native/zstd/lib/compress/zstd_compress_sequences.c
|
|
345
|
+
- ext/zstd_native/zstd/lib/compress/zstd_compress_sequences.h
|
|
346
|
+
- ext/zstd_native/zstd/lib/compress/zstd_compress_sequences.o
|
|
347
|
+
- ext/zstd_native/zstd/lib/compress/zstd_compress_superblock.c
|
|
348
|
+
- ext/zstd_native/zstd/lib/compress/zstd_compress_superblock.h
|
|
349
|
+
- ext/zstd_native/zstd/lib/compress/zstd_compress_superblock.o
|
|
350
|
+
- ext/zstd_native/zstd/lib/compress/zstd_cwksp.h
|
|
351
|
+
- ext/zstd_native/zstd/lib/compress/zstd_double_fast.c
|
|
352
|
+
- ext/zstd_native/zstd/lib/compress/zstd_double_fast.h
|
|
353
|
+
- ext/zstd_native/zstd/lib/compress/zstd_double_fast.o
|
|
354
|
+
- ext/zstd_native/zstd/lib/compress/zstd_fast.c
|
|
355
|
+
- ext/zstd_native/zstd/lib/compress/zstd_fast.h
|
|
356
|
+
- ext/zstd_native/zstd/lib/compress/zstd_fast.o
|
|
357
|
+
- ext/zstd_native/zstd/lib/compress/zstd_lazy.c
|
|
358
|
+
- ext/zstd_native/zstd/lib/compress/zstd_lazy.h
|
|
359
|
+
- ext/zstd_native/zstd/lib/compress/zstd_lazy.o
|
|
360
|
+
- ext/zstd_native/zstd/lib/compress/zstd_ldm.c
|
|
361
|
+
- ext/zstd_native/zstd/lib/compress/zstd_ldm.h
|
|
362
|
+
- ext/zstd_native/zstd/lib/compress/zstd_ldm.o
|
|
363
|
+
- ext/zstd_native/zstd/lib/compress/zstd_ldm_geartab.h
|
|
364
|
+
- ext/zstd_native/zstd/lib/compress/zstd_opt.c
|
|
365
|
+
- ext/zstd_native/zstd/lib/compress/zstd_opt.h
|
|
366
|
+
- ext/zstd_native/zstd/lib/compress/zstd_opt.o
|
|
367
|
+
- ext/zstd_native/zstd/lib/compress/zstd_preSplit.c
|
|
368
|
+
- ext/zstd_native/zstd/lib/compress/zstd_preSplit.h
|
|
369
|
+
- ext/zstd_native/zstd/lib/compress/zstd_preSplit.o
|
|
370
|
+
- ext/zstd_native/zstd/lib/compress/zstdmt_compress.c
|
|
371
|
+
- ext/zstd_native/zstd/lib/compress/zstdmt_compress.h
|
|
372
|
+
- ext/zstd_native/zstd/lib/compress/zstdmt_compress.o
|
|
373
|
+
- ext/zstd_native/zstd/lib/decompress/huf_decompress.c
|
|
374
|
+
- ext/zstd_native/zstd/lib/decompress/huf_decompress.o
|
|
375
|
+
- ext/zstd_native/zstd/lib/decompress/huf_decompress_amd64.S
|
|
376
|
+
- ext/zstd_native/zstd/lib/decompress/zstd_ddict.c
|
|
377
|
+
- ext/zstd_native/zstd/lib/decompress/zstd_ddict.h
|
|
378
|
+
- ext/zstd_native/zstd/lib/decompress/zstd_ddict.o
|
|
379
|
+
- ext/zstd_native/zstd/lib/decompress/zstd_decompress.c
|
|
380
|
+
- ext/zstd_native/zstd/lib/decompress/zstd_decompress.o
|
|
381
|
+
- ext/zstd_native/zstd/lib/decompress/zstd_decompress_block.c
|
|
382
|
+
- ext/zstd_native/zstd/lib/decompress/zstd_decompress_block.h
|
|
383
|
+
- ext/zstd_native/zstd/lib/decompress/zstd_decompress_block.o
|
|
384
|
+
- ext/zstd_native/zstd/lib/decompress/zstd_decompress_internal.h
|
|
385
|
+
- ext/zstd_native/zstd/lib/deprecated/zbuff.h
|
|
386
|
+
- ext/zstd_native/zstd/lib/deprecated/zbuff_common.c
|
|
387
|
+
- ext/zstd_native/zstd/lib/deprecated/zbuff_compress.c
|
|
388
|
+
- ext/zstd_native/zstd/lib/deprecated/zbuff_decompress.c
|
|
389
|
+
- ext/zstd_native/zstd/lib/dictBuilder/cover.c
|
|
390
|
+
- ext/zstd_native/zstd/lib/dictBuilder/cover.h
|
|
391
|
+
- ext/zstd_native/zstd/lib/dictBuilder/cover.o
|
|
392
|
+
- ext/zstd_native/zstd/lib/dictBuilder/divsufsort.c
|
|
393
|
+
- ext/zstd_native/zstd/lib/dictBuilder/divsufsort.h
|
|
394
|
+
- ext/zstd_native/zstd/lib/dictBuilder/divsufsort.o
|
|
395
|
+
- ext/zstd_native/zstd/lib/dictBuilder/fastcover.c
|
|
396
|
+
- ext/zstd_native/zstd/lib/dictBuilder/fastcover.o
|
|
397
|
+
- ext/zstd_native/zstd/lib/dictBuilder/zdict.c
|
|
398
|
+
- ext/zstd_native/zstd/lib/dictBuilder/zdict.o
|
|
399
|
+
- ext/zstd_native/zstd/lib/dll/example/Makefile
|
|
400
|
+
- ext/zstd_native/zstd/lib/dll/example/README.md
|
|
401
|
+
- ext/zstd_native/zstd/lib/dll/example/build_package.bat
|
|
402
|
+
- ext/zstd_native/zstd/lib/dll/example/fullbench-dll.sln
|
|
403
|
+
- ext/zstd_native/zstd/lib/dll/example/fullbench-dll.vcxproj
|
|
404
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_legacy.h
|
|
405
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v01.c
|
|
406
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v01.h
|
|
407
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v02.c
|
|
408
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v02.h
|
|
409
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v03.c
|
|
410
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v03.h
|
|
411
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v04.c
|
|
412
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v04.h
|
|
413
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v05.c
|
|
414
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v05.h
|
|
415
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v06.c
|
|
416
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v06.h
|
|
417
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v07.c
|
|
418
|
+
- ext/zstd_native/zstd/lib/legacy/zstd_v07.h
|
|
419
|
+
- ext/zstd_native/zstd/lib/libzstd.mk
|
|
420
|
+
- ext/zstd_native/zstd/lib/libzstd.pc.in
|
|
421
|
+
- ext/zstd_native/zstd/lib/module.modulemap
|
|
422
|
+
- ext/zstd_native/zstd/lib/zdict.h
|
|
423
|
+
- ext/zstd_native/zstd/lib/zstd.h
|
|
424
|
+
- ext/zstd_native/zstd/lib/zstd_errors.h
|
|
425
|
+
- ext/zstd_native/zstd/programs/BUCK
|
|
426
|
+
- ext/zstd_native/zstd/programs/Makefile
|
|
427
|
+
- ext/zstd_native/zstd/programs/README.md
|
|
428
|
+
- ext/zstd_native/zstd/programs/benchfn.c
|
|
429
|
+
- ext/zstd_native/zstd/programs/benchfn.h
|
|
430
|
+
- ext/zstd_native/zstd/programs/benchzstd.c
|
|
431
|
+
- ext/zstd_native/zstd/programs/benchzstd.h
|
|
432
|
+
- ext/zstd_native/zstd/programs/datagen.c
|
|
433
|
+
- ext/zstd_native/zstd/programs/datagen.h
|
|
434
|
+
- ext/zstd_native/zstd/programs/dibio.c
|
|
435
|
+
- ext/zstd_native/zstd/programs/dibio.h
|
|
436
|
+
- ext/zstd_native/zstd/programs/fileio.c
|
|
437
|
+
- ext/zstd_native/zstd/programs/fileio.h
|
|
438
|
+
- ext/zstd_native/zstd/programs/fileio_asyncio.c
|
|
439
|
+
- ext/zstd_native/zstd/programs/fileio_asyncio.h
|
|
440
|
+
- ext/zstd_native/zstd/programs/fileio_common.h
|
|
441
|
+
- ext/zstd_native/zstd/programs/fileio_types.h
|
|
442
|
+
- ext/zstd_native/zstd/programs/lorem.c
|
|
443
|
+
- ext/zstd_native/zstd/programs/lorem.h
|
|
444
|
+
- ext/zstd_native/zstd/programs/platform.h
|
|
445
|
+
- ext/zstd_native/zstd/programs/timefn.c
|
|
446
|
+
- ext/zstd_native/zstd/programs/timefn.h
|
|
447
|
+
- ext/zstd_native/zstd/programs/util.c
|
|
448
|
+
- ext/zstd_native/zstd/programs/util.h
|
|
449
|
+
- ext/zstd_native/zstd/programs/windres/verrsrc.h
|
|
450
|
+
- ext/zstd_native/zstd/programs/windres/zstd.rc
|
|
451
|
+
- ext/zstd_native/zstd/programs/windres/zstd32.res
|
|
452
|
+
- ext/zstd_native/zstd/programs/windres/zstd64.res
|
|
453
|
+
- ext/zstd_native/zstd/programs/zstd.1
|
|
454
|
+
- ext/zstd_native/zstd/programs/zstd.1.md
|
|
455
|
+
- ext/zstd_native/zstd/programs/zstdcli.c
|
|
456
|
+
- ext/zstd_native/zstd/programs/zstdcli_trace.c
|
|
457
|
+
- ext/zstd_native/zstd/programs/zstdcli_trace.h
|
|
458
|
+
- ext/zstd_native/zstd/programs/zstdgrep
|
|
459
|
+
- ext/zstd_native/zstd/programs/zstdgrep.1
|
|
460
|
+
- ext/zstd_native/zstd/programs/zstdgrep.1.md
|
|
461
|
+
- ext/zstd_native/zstd/programs/zstdless
|
|
462
|
+
- ext/zstd_native/zstd/programs/zstdless.1
|
|
463
|
+
- ext/zstd_native/zstd/programs/zstdless.1.md
|
|
464
|
+
- ext/zstd_native/zstd/tests/DEPRECATED-test-zstd-speed.py
|
|
465
|
+
- ext/zstd_native/zstd/tests/Makefile
|
|
466
|
+
- ext/zstd_native/zstd/tests/README.md
|
|
467
|
+
- ext/zstd_native/zstd/tests/automated_benchmarking.py
|
|
468
|
+
- ext/zstd_native/zstd/tests/bigdict.c
|
|
469
|
+
- ext/zstd_native/zstd/tests/checkTag.c
|
|
470
|
+
- ext/zstd_native/zstd/tests/check_size.py
|
|
471
|
+
- ext/zstd_native/zstd/tests/cli-tests/README.md
|
|
472
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/args.sh
|
|
473
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/args.sh.exit
|
|
474
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/args.sh.stderr.glob
|
|
475
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/help.sh
|
|
476
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/help.sh.stdout.glob
|
|
477
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/memlimit.sh
|
|
478
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/memlimit.sh.stderr.exact
|
|
479
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/memlimit.sh.stdout.exact
|
|
480
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/output_dir.sh
|
|
481
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/output_dir.sh.stderr.exact
|
|
482
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/output_dir.sh.stdout.exact
|
|
483
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/version.sh
|
|
484
|
+
- ext/zstd_native/zstd/tests/cli-tests/basic/version.sh.stdout.glob
|
|
485
|
+
- ext/zstd_native/zstd/tests/cli-tests/bin/cmp_size
|
|
486
|
+
- ext/zstd_native/zstd/tests/cli-tests/bin/datagen
|
|
487
|
+
- ext/zstd_native/zstd/tests/cli-tests/bin/die
|
|
488
|
+
- ext/zstd_native/zstd/tests/cli-tests/bin/println
|
|
489
|
+
- ext/zstd_native/zstd/tests/cli-tests/bin/zstd
|
|
490
|
+
- ext/zstd_native/zstd/tests/cli-tests/bin/zstdgrep
|
|
491
|
+
- ext/zstd_native/zstd/tests/cli-tests/bin/zstdless
|
|
492
|
+
- ext/zstd_native/zstd/tests/cli-tests/cltools/setup
|
|
493
|
+
- ext/zstd_native/zstd/tests/cli-tests/cltools/zstdgrep.sh
|
|
494
|
+
- ext/zstd_native/zstd/tests/cli-tests/cltools/zstdgrep.sh.exit
|
|
495
|
+
- ext/zstd_native/zstd/tests/cli-tests/cltools/zstdgrep.sh.stderr.exact
|
|
496
|
+
- ext/zstd_native/zstd/tests/cli-tests/cltools/zstdgrep.sh.stdout.glob
|
|
497
|
+
- ext/zstd_native/zstd/tests/cli-tests/cltools/zstdless.sh
|
|
498
|
+
- ext/zstd_native/zstd/tests/cli-tests/cltools/zstdless.sh.stderr.exact
|
|
499
|
+
- ext/zstd_native/zstd/tests/cli-tests/cltools/zstdless.sh.stdout.glob
|
|
500
|
+
- ext/zstd_native/zstd/tests/cli-tests/common/format.sh
|
|
501
|
+
- ext/zstd_native/zstd/tests/cli-tests/common/mtime.sh
|
|
502
|
+
- ext/zstd_native/zstd/tests/cli-tests/common/permissions.sh
|
|
503
|
+
- ext/zstd_native/zstd/tests/cli-tests/common/platform.sh
|
|
504
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/adapt.sh
|
|
505
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/basic.sh
|
|
506
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/compress-literals.sh
|
|
507
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/format.sh
|
|
508
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/golden.sh
|
|
509
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/gzip-compat.sh
|
|
510
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/levels.sh
|
|
511
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/levels.sh.stderr.exact
|
|
512
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/long-distance-matcher.sh
|
|
513
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/multi-threaded.sh
|
|
514
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/multi-threaded.sh.stderr.exact
|
|
515
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/multiple-files.sh
|
|
516
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/multiple-files.sh.stdout.exact
|
|
517
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/row-match-finder.sh
|
|
518
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/setup
|
|
519
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/stream-size.sh
|
|
520
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/verbose-wlog.sh
|
|
521
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/verbose-wlog.sh.stderr.glob
|
|
522
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/verbose-wlog.sh.stdout.glob
|
|
523
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/window-resize.sh
|
|
524
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/window-resize.sh.stderr.ignore
|
|
525
|
+
- ext/zstd_native/zstd/tests/cli-tests/compression/window-resize.sh.stdout.glob
|
|
526
|
+
- ext/zstd_native/zstd/tests/cli-tests/decompression/detectErrors.sh
|
|
527
|
+
- ext/zstd_native/zstd/tests/cli-tests/decompression/golden.sh
|
|
528
|
+
- ext/zstd_native/zstd/tests/cli-tests/decompression/pass-through.sh
|
|
529
|
+
- ext/zstd_native/zstd/tests/cli-tests/decompression/pass-through.sh.stderr.exact
|
|
530
|
+
- ext/zstd_native/zstd/tests/cli-tests/decompression/pass-through.sh.stdout.exact
|
|
531
|
+
- ext/zstd_native/zstd/tests/cli-tests/dict-builder/empty-input.sh
|
|
532
|
+
- ext/zstd_native/zstd/tests/cli-tests/dict-builder/empty-input.sh.stderr.exact
|
|
533
|
+
- ext/zstd_native/zstd/tests/cli-tests/dict-builder/no-inputs.sh
|
|
534
|
+
- ext/zstd_native/zstd/tests/cli-tests/dict-builder/no-inputs.sh.exit
|
|
535
|
+
- ext/zstd_native/zstd/tests/cli-tests/dict-builder/no-inputs.sh.stderr.exact
|
|
536
|
+
- ext/zstd_native/zstd/tests/cli-tests/dictionaries/dictionary-mismatch.sh
|
|
537
|
+
- ext/zstd_native/zstd/tests/cli-tests/dictionaries/dictionary-mismatch.sh.stderr.exact
|
|
538
|
+
- ext/zstd_native/zstd/tests/cli-tests/dictionaries/golden.sh
|
|
539
|
+
- ext/zstd_native/zstd/tests/cli-tests/dictionaries/setup
|
|
540
|
+
- ext/zstd_native/zstd/tests/cli-tests/dictionaries/setup_once
|
|
541
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-handling/directory-mirror.sh
|
|
542
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-handling/directory-mirror.sh.stderr.exact
|
|
543
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-handling/directory-mirror.sh.stdout.exact
|
|
544
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/compress-file-to-dir-without-write-perm.sh
|
|
545
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/compress-file-to-dir-without-write-perm.sh.stderr.exact
|
|
546
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/compress-file-to-file.sh
|
|
547
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/compress-file-to-file.sh.stderr.exact
|
|
548
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/compress-file-to-stdout.sh
|
|
549
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/compress-file-to-stdout.sh.stderr.exact
|
|
550
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/compress-stdin-to-file.sh
|
|
551
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/compress-stdin-to-file.sh.stderr.exact
|
|
552
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/compress-stdin-to-stdout.sh
|
|
553
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/compress-stdin-to-stdout.sh.stderr.exact
|
|
554
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/decompress-file-to-file.sh
|
|
555
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/decompress-file-to-file.sh.stderr.exact
|
|
556
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/decompress-file-to-stdout.sh
|
|
557
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/decompress-file-to-stdout.sh.stderr.exact
|
|
558
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/decompress-stdin-to-file.sh
|
|
559
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/decompress-stdin-to-file.sh.stderr.exact
|
|
560
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/decompress-stdin-to-stdout.sh
|
|
561
|
+
- ext/zstd_native/zstd/tests/cli-tests/file-stat/decompress-stdin-to-stdout.sh.stderr.exact
|
|
562
|
+
- ext/zstd_native/zstd/tests/cli-tests/progress/no-progress.sh
|
|
563
|
+
- ext/zstd_native/zstd/tests/cli-tests/progress/no-progress.sh.stderr.glob
|
|
564
|
+
- ext/zstd_native/zstd/tests/cli-tests/progress/progress.sh
|
|
565
|
+
- ext/zstd_native/zstd/tests/cli-tests/progress/progress.sh.stderr.glob
|
|
566
|
+
- ext/zstd_native/zstd/tests/cli-tests/run.py
|
|
567
|
+
- ext/zstd_native/zstd/tests/cli-tests/zstd-symlinks/setup
|
|
568
|
+
- ext/zstd_native/zstd/tests/cli-tests/zstd-symlinks/zstdcat.sh
|
|
569
|
+
- ext/zstd_native/zstd/tests/cli-tests/zstd-symlinks/zstdcat.sh.stdout.exact
|
|
570
|
+
- ext/zstd_native/zstd/tests/datagencli.c
|
|
571
|
+
- ext/zstd_native/zstd/tests/decodecorpus.c
|
|
572
|
+
- ext/zstd_native/zstd/tests/dict-files/zero-weight-dict
|
|
573
|
+
- ext/zstd_native/zstd/tests/external_matchfinder.c
|
|
574
|
+
- ext/zstd_native/zstd/tests/external_matchfinder.h
|
|
575
|
+
- ext/zstd_native/zstd/tests/fullbench.c
|
|
576
|
+
- ext/zstd_native/zstd/tests/fuzz/Makefile
|
|
577
|
+
- ext/zstd_native/zstd/tests/fuzz/README.md
|
|
578
|
+
- ext/zstd_native/zstd/tests/fuzz/block_decompress.c
|
|
579
|
+
- ext/zstd_native/zstd/tests/fuzz/block_round_trip.c
|
|
580
|
+
- ext/zstd_native/zstd/tests/fuzz/decompress_cross_format.c
|
|
581
|
+
- ext/zstd_native/zstd/tests/fuzz/decompress_dstSize_tooSmall.c
|
|
582
|
+
- ext/zstd_native/zstd/tests/fuzz/dictionary_decompress.c
|
|
583
|
+
- ext/zstd_native/zstd/tests/fuzz/dictionary_loader.c
|
|
584
|
+
- ext/zstd_native/zstd/tests/fuzz/dictionary_round_trip.c
|
|
585
|
+
- ext/zstd_native/zstd/tests/fuzz/dictionary_stream_round_trip.c
|
|
586
|
+
- ext/zstd_native/zstd/tests/fuzz/fse_read_ncount.c
|
|
587
|
+
- ext/zstd_native/zstd/tests/fuzz/fuzz.h
|
|
588
|
+
- ext/zstd_native/zstd/tests/fuzz/fuzz.py
|
|
589
|
+
- ext/zstd_native/zstd/tests/fuzz/fuzz_data_producer.c
|
|
590
|
+
- ext/zstd_native/zstd/tests/fuzz/fuzz_data_producer.h
|
|
591
|
+
- ext/zstd_native/zstd/tests/fuzz/fuzz_helpers.c
|
|
592
|
+
- ext/zstd_native/zstd/tests/fuzz/fuzz_helpers.h
|
|
593
|
+
- ext/zstd_native/zstd/tests/fuzz/fuzz_third_party_seq_prod.h
|
|
594
|
+
- ext/zstd_native/zstd/tests/fuzz/generate_sequences.c
|
|
595
|
+
- ext/zstd_native/zstd/tests/fuzz/huf_decompress.c
|
|
596
|
+
- ext/zstd_native/zstd/tests/fuzz/huf_round_trip.c
|
|
597
|
+
- ext/zstd_native/zstd/tests/fuzz/raw_dictionary_round_trip.c
|
|
598
|
+
- ext/zstd_native/zstd/tests/fuzz/regression_driver.c
|
|
599
|
+
- ext/zstd_native/zstd/tests/fuzz/seekable_roundtrip.c
|
|
600
|
+
- ext/zstd_native/zstd/tests/fuzz/seq_prod_fuzz_example/Makefile
|
|
601
|
+
- ext/zstd_native/zstd/tests/fuzz/seq_prod_fuzz_example/README.md
|
|
602
|
+
- ext/zstd_native/zstd/tests/fuzz/seq_prod_fuzz_example/example_seq_prod.c
|
|
603
|
+
- ext/zstd_native/zstd/tests/fuzz/sequence_compression_api.c
|
|
604
|
+
- ext/zstd_native/zstd/tests/fuzz/simple_compress.c
|
|
605
|
+
- ext/zstd_native/zstd/tests/fuzz/simple_decompress.c
|
|
606
|
+
- ext/zstd_native/zstd/tests/fuzz/simple_round_trip.c
|
|
607
|
+
- ext/zstd_native/zstd/tests/fuzz/stream_decompress.c
|
|
608
|
+
- ext/zstd_native/zstd/tests/fuzz/stream_round_trip.c
|
|
609
|
+
- ext/zstd_native/zstd/tests/fuzz/zstd_frame_info.c
|
|
610
|
+
- ext/zstd_native/zstd/tests/fuzz/zstd_helpers.c
|
|
611
|
+
- ext/zstd_native/zstd/tests/fuzz/zstd_helpers.h
|
|
612
|
+
- ext/zstd_native/zstd/tests/fuzzer.c
|
|
613
|
+
- ext/zstd_native/zstd/tests/golden-compression/PR-3517-block-splitter-corruption-test
|
|
614
|
+
- ext/zstd_native/zstd/tests/golden-compression/http
|
|
615
|
+
- ext/zstd_native/zstd/tests/golden-compression/huffman-compressed-larger
|
|
616
|
+
- ext/zstd_native/zstd/tests/golden-compression/large-literal-and-match-lengths
|
|
617
|
+
- ext/zstd_native/zstd/tests/golden-decompression-errors/off0.bin.zst
|
|
618
|
+
- ext/zstd_native/zstd/tests/golden-decompression-errors/truncated_huff_state.zst
|
|
619
|
+
- ext/zstd_native/zstd/tests/golden-decompression-errors/zeroSeq_extraneous.zst
|
|
620
|
+
- ext/zstd_native/zstd/tests/golden-decompression/block-128k.zst
|
|
621
|
+
- ext/zstd_native/zstd/tests/golden-decompression/empty-block.zst
|
|
622
|
+
- ext/zstd_native/zstd/tests/golden-decompression/rle-first-block.zst
|
|
623
|
+
- ext/zstd_native/zstd/tests/golden-decompression/zeroSeq_2B.zst
|
|
624
|
+
- ext/zstd_native/zstd/tests/golden-dictionaries/http-dict-missing-symbols
|
|
625
|
+
- ext/zstd_native/zstd/tests/gzip/Makefile
|
|
626
|
+
- ext/zstd_native/zstd/tests/gzip/gzip-env.sh
|
|
627
|
+
- ext/zstd_native/zstd/tests/gzip/helin-segv.sh
|
|
628
|
+
- ext/zstd_native/zstd/tests/gzip/help-version.sh
|
|
629
|
+
- ext/zstd_native/zstd/tests/gzip/hufts-segv.gz
|
|
630
|
+
- ext/zstd_native/zstd/tests/gzip/hufts.sh
|
|
631
|
+
- ext/zstd_native/zstd/tests/gzip/init.cfg
|
|
632
|
+
- ext/zstd_native/zstd/tests/gzip/init.sh
|
|
633
|
+
- ext/zstd_native/zstd/tests/gzip/keep.sh
|
|
634
|
+
- ext/zstd_native/zstd/tests/gzip/list.sh
|
|
635
|
+
- ext/zstd_native/zstd/tests/gzip/memcpy-abuse.sh
|
|
636
|
+
- ext/zstd_native/zstd/tests/gzip/mixed.sh
|
|
637
|
+
- ext/zstd_native/zstd/tests/gzip/null-suffix-clobber.sh
|
|
638
|
+
- ext/zstd_native/zstd/tests/gzip/stdin.sh
|
|
639
|
+
- ext/zstd_native/zstd/tests/gzip/test-driver.sh
|
|
640
|
+
- ext/zstd_native/zstd/tests/gzip/trailing-nul.sh
|
|
641
|
+
- ext/zstd_native/zstd/tests/gzip/unpack-invalid.sh
|
|
642
|
+
- ext/zstd_native/zstd/tests/gzip/z-suffix.sh
|
|
643
|
+
- ext/zstd_native/zstd/tests/gzip/zdiff.sh
|
|
644
|
+
- ext/zstd_native/zstd/tests/gzip/zgrep-context.sh
|
|
645
|
+
- ext/zstd_native/zstd/tests/gzip/zgrep-f.sh
|
|
646
|
+
- ext/zstd_native/zstd/tests/gzip/zgrep-signal.sh
|
|
647
|
+
- ext/zstd_native/zstd/tests/gzip/znew-k.sh
|
|
648
|
+
- ext/zstd_native/zstd/tests/invalidDictionaries.c
|
|
649
|
+
- ext/zstd_native/zstd/tests/largeDictionary.c
|
|
650
|
+
- ext/zstd_native/zstd/tests/legacy.c
|
|
651
|
+
- ext/zstd_native/zstd/tests/libzstd_builds.sh
|
|
652
|
+
- ext/zstd_native/zstd/tests/longmatch.c
|
|
653
|
+
- ext/zstd_native/zstd/tests/loremOut.c
|
|
654
|
+
- ext/zstd_native/zstd/tests/loremOut.h
|
|
655
|
+
- ext/zstd_native/zstd/tests/paramgrill.c
|
|
656
|
+
- ext/zstd_native/zstd/tests/playTests.sh
|
|
657
|
+
- ext/zstd_native/zstd/tests/poolTests.c
|
|
658
|
+
- ext/zstd_native/zstd/tests/rateLimiter.py
|
|
659
|
+
- ext/zstd_native/zstd/tests/regression/Makefile
|
|
660
|
+
- ext/zstd_native/zstd/tests/regression/README.md
|
|
661
|
+
- ext/zstd_native/zstd/tests/regression/config.c
|
|
662
|
+
- ext/zstd_native/zstd/tests/regression/config.h
|
|
663
|
+
- ext/zstd_native/zstd/tests/regression/data.c
|
|
664
|
+
- ext/zstd_native/zstd/tests/regression/data.h
|
|
665
|
+
- ext/zstd_native/zstd/tests/regression/levels.h
|
|
666
|
+
- ext/zstd_native/zstd/tests/regression/method.c
|
|
667
|
+
- ext/zstd_native/zstd/tests/regression/method.h
|
|
668
|
+
- ext/zstd_native/zstd/tests/regression/result.c
|
|
669
|
+
- ext/zstd_native/zstd/tests/regression/result.h
|
|
670
|
+
- ext/zstd_native/zstd/tests/regression/results.csv
|
|
671
|
+
- ext/zstd_native/zstd/tests/regression/test.c
|
|
672
|
+
- ext/zstd_native/zstd/tests/roundTripCrash.c
|
|
673
|
+
- ext/zstd_native/zstd/tests/seqgen.c
|
|
674
|
+
- ext/zstd_native/zstd/tests/seqgen.h
|
|
675
|
+
- ext/zstd_native/zstd/tests/test-license.py
|
|
676
|
+
- ext/zstd_native/zstd/tests/test-variants.sh
|
|
677
|
+
- ext/zstd_native/zstd/tests/test-zstd-versions.py
|
|
678
|
+
- ext/zstd_native/zstd/tests/zstreamtest.c
|
|
679
|
+
- ext/zstd_native/zstd/zlibWrapper/BUCK
|
|
680
|
+
- ext/zstd_native/zstd/zlibWrapper/Makefile
|
|
681
|
+
- ext/zstd_native/zstd/zlibWrapper/README.md
|
|
682
|
+
- ext/zstd_native/zstd/zlibWrapper/examples/example.c
|
|
683
|
+
- ext/zstd_native/zstd/zlibWrapper/examples/example_original.c
|
|
684
|
+
- ext/zstd_native/zstd/zlibWrapper/examples/fitblk.c
|
|
685
|
+
- ext/zstd_native/zstd/zlibWrapper/examples/fitblk_original.c
|
|
686
|
+
- ext/zstd_native/zstd/zlibWrapper/examples/minigzip.c
|
|
687
|
+
- ext/zstd_native/zstd/zlibWrapper/examples/zwrapbench.c
|
|
688
|
+
- ext/zstd_native/zstd/zlibWrapper/gzclose.c
|
|
689
|
+
- ext/zstd_native/zstd/zlibWrapper/gzcompatibility.h
|
|
690
|
+
- ext/zstd_native/zstd/zlibWrapper/gzguts.h
|
|
691
|
+
- ext/zstd_native/zstd/zlibWrapper/gzlib.c
|
|
692
|
+
- ext/zstd_native/zstd/zlibWrapper/gzread.c
|
|
693
|
+
- ext/zstd_native/zstd/zlibWrapper/gzwrite.c
|
|
694
|
+
- ext/zstd_native/zstd/zlibWrapper/zstd_zlibwrapper.c
|
|
695
|
+
- ext/zstd_native/zstd/zlibWrapper/zstd_zlibwrapper.h
|
|
696
|
+
- ext/zstd_native/zstd_native.c
|
|
697
|
+
- ext/zstd_native/zstd_native.o
|
|
698
|
+
- ext/zstd_native/zstd_native.so
|
|
699
|
+
- lib/zstd_native.rb
|
|
700
|
+
- lib/zstd_native/version.rb
|
|
701
|
+
- lib/zstd_native/zstd_native.so
|
|
702
|
+
homepage: https://github.com/facebook/zstd
|
|
716
703
|
licenses:
|
|
717
704
|
- MIT
|
|
718
|
-
metadata:
|
|
705
|
+
metadata:
|
|
706
|
+
homepage_uri: https://github.com/facebook/zstd
|
|
707
|
+
source_code_uri: https://github.com/facebook/zstd
|
|
708
|
+
changelog_uri: https://github.com/facebook/zstd/releases
|
|
719
709
|
post_install_message:
|
|
720
710
|
rdoc_options: []
|
|
721
711
|
require_paths:
|
|
@@ -734,5 +724,5 @@ requirements: []
|
|
|
734
724
|
rubygems_version: 3.4.20
|
|
735
725
|
signing_key:
|
|
736
726
|
specification_version: 4
|
|
737
|
-
summary: Ruby bindings for the Zstandard compression library
|
|
727
|
+
summary: Native Ruby bindings for the Zstandard compression library
|
|
738
728
|
test_files: []
|