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