zstdlib 0.9.0-arm64-darwin

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 (123) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +6 -0
  3. data/CHANGES.md +78 -0
  4. data/Gemfile +3 -0
  5. data/README.md +107 -0
  6. data/Rakefile +59 -0
  7. data/ext/zstdlib_c/extconf.rb +54 -0
  8. data/ext/zstdlib_c/ruby/zlib-2.2/zstdlib.c +4675 -0
  9. data/ext/zstdlib_c/ruby/zlib-2.3/zstdlib.c +4702 -0
  10. data/ext/zstdlib_c/ruby/zlib-2.4/zstdlib.c +4859 -0
  11. data/ext/zstdlib_c/ruby/zlib-2.5/zstdlib.c +4864 -0
  12. data/ext/zstdlib_c/ruby/zlib-2.6/zstdlib.c +4906 -0
  13. data/ext/zstdlib_c/ruby/zlib-2.7/zstdlib.c +4895 -0
  14. data/ext/zstdlib_c/ruby/zlib-3.0/zstdlib.c +4994 -0
  15. data/ext/zstdlib_c/ruby/zlib-3.1/zstdlib.c +5076 -0
  16. data/ext/zstdlib_c/zlib-1.2.11/adler32.c +186 -0
  17. data/ext/zstdlib_c/zlib-1.2.11/compress.c +86 -0
  18. data/ext/zstdlib_c/zlib-1.2.11/crc32.c +442 -0
  19. data/ext/zstdlib_c/zlib-1.2.11/crc32.h +441 -0
  20. data/ext/zstdlib_c/zlib-1.2.11/deflate.c +2163 -0
  21. data/ext/zstdlib_c/zlib-1.2.11/deflate.h +349 -0
  22. data/ext/zstdlib_c/zlib-1.2.11/gzclose.c +25 -0
  23. data/ext/zstdlib_c/zlib-1.2.11/gzguts.h +218 -0
  24. data/ext/zstdlib_c/zlib-1.2.11/gzlib.c +637 -0
  25. data/ext/zstdlib_c/zlib-1.2.11/gzread.c +654 -0
  26. data/ext/zstdlib_c/zlib-1.2.11/gzwrite.c +665 -0
  27. data/ext/zstdlib_c/zlib-1.2.11/infback.c +640 -0
  28. data/ext/zstdlib_c/zlib-1.2.11/inffast.c +323 -0
  29. data/ext/zstdlib_c/zlib-1.2.11/inffast.h +11 -0
  30. data/ext/zstdlib_c/zlib-1.2.11/inffixed.h +94 -0
  31. data/ext/zstdlib_c/zlib-1.2.11/inflate.c +1561 -0
  32. data/ext/zstdlib_c/zlib-1.2.11/inflate.h +125 -0
  33. data/ext/zstdlib_c/zlib-1.2.11/inftrees.c +304 -0
  34. data/ext/zstdlib_c/zlib-1.2.11/inftrees.h +62 -0
  35. data/ext/zstdlib_c/zlib-1.2.11/trees.c +1203 -0
  36. data/ext/zstdlib_c/zlib-1.2.11/trees.h +128 -0
  37. data/ext/zstdlib_c/zlib-1.2.11/uncompr.c +93 -0
  38. data/ext/zstdlib_c/zlib-1.2.11/zconf.h +534 -0
  39. data/ext/zstdlib_c/zlib-1.2.11/zlib.h +1912 -0
  40. data/ext/zstdlib_c/zlib-1.2.11/zutil.c +325 -0
  41. data/ext/zstdlib_c/zlib-1.2.11/zutil.h +271 -0
  42. data/ext/zstdlib_c/zlib.mk +14 -0
  43. data/ext/zstdlib_c/zlibwrapper/zlibwrapper.c +10 -0
  44. data/ext/zstdlib_c/zlibwrapper.mk +14 -0
  45. data/ext/zstdlib_c/zstd-1.5.2/lib/common/bitstream.h +478 -0
  46. data/ext/zstdlib_c/zstd-1.5.2/lib/common/compiler.h +335 -0
  47. data/ext/zstdlib_c/zstd-1.5.2/lib/common/cpu.h +213 -0
  48. data/ext/zstdlib_c/zstd-1.5.2/lib/common/debug.c +24 -0
  49. data/ext/zstdlib_c/zstd-1.5.2/lib/common/debug.h +107 -0
  50. data/ext/zstdlib_c/zstd-1.5.2/lib/common/entropy_common.c +368 -0
  51. data/ext/zstdlib_c/zstd-1.5.2/lib/common/error_private.c +56 -0
  52. data/ext/zstdlib_c/zstd-1.5.2/lib/common/error_private.h +159 -0
  53. data/ext/zstdlib_c/zstd-1.5.2/lib/common/fse.h +717 -0
  54. data/ext/zstdlib_c/zstd-1.5.2/lib/common/fse_decompress.c +403 -0
  55. data/ext/zstdlib_c/zstd-1.5.2/lib/common/huf.h +364 -0
  56. data/ext/zstdlib_c/zstd-1.5.2/lib/common/mem.h +442 -0
  57. data/ext/zstdlib_c/zstd-1.5.2/lib/common/pool.c +355 -0
  58. data/ext/zstdlib_c/zstd-1.5.2/lib/common/pool.h +84 -0
  59. data/ext/zstdlib_c/zstd-1.5.2/lib/common/portability_macros.h +137 -0
  60. data/ext/zstdlib_c/zstd-1.5.2/lib/common/threading.c +122 -0
  61. data/ext/zstdlib_c/zstd-1.5.2/lib/common/threading.h +155 -0
  62. data/ext/zstdlib_c/zstd-1.5.2/lib/common/xxhash.c +24 -0
  63. data/ext/zstdlib_c/zstd-1.5.2/lib/common/xxhash.h +5686 -0
  64. data/ext/zstdlib_c/zstd-1.5.2/lib/common/zstd_common.c +83 -0
  65. data/ext/zstdlib_c/zstd-1.5.2/lib/common/zstd_deps.h +111 -0
  66. data/ext/zstdlib_c/zstd-1.5.2/lib/common/zstd_internal.h +493 -0
  67. data/ext/zstdlib_c/zstd-1.5.2/lib/common/zstd_trace.h +163 -0
  68. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/clevels.h +134 -0
  69. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/fse_compress.c +741 -0
  70. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/hist.c +181 -0
  71. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/hist.h +75 -0
  72. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/huf_compress.c +1370 -0
  73. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress.c +6327 -0
  74. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_internal.h +1458 -0
  75. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_literals.c +159 -0
  76. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_literals.h +31 -0
  77. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_sequences.c +442 -0
  78. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_sequences.h +54 -0
  79. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_superblock.c +573 -0
  80. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_superblock.h +32 -0
  81. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_cwksp.h +676 -0
  82. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_double_fast.c +696 -0
  83. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_double_fast.h +38 -0
  84. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_fast.c +675 -0
  85. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_fast.h +37 -0
  86. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_lazy.c +2104 -0
  87. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_lazy.h +125 -0
  88. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_ldm.c +724 -0
  89. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_ldm.h +117 -0
  90. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_ldm_geartab.h +106 -0
  91. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_opt.c +1446 -0
  92. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_opt.h +56 -0
  93. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstdmt_compress.c +1859 -0
  94. data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstdmt_compress.h +113 -0
  95. data/ext/zstdlib_c/zstd-1.5.2/lib/decompress/huf_decompress.c +1889 -0
  96. data/ext/zstdlib_c/zstd-1.5.2/lib/decompress/huf_decompress_amd64.S +585 -0
  97. data/ext/zstdlib_c/zstd-1.5.2/lib/decompress/zstd_ddict.c +244 -0
  98. data/ext/zstdlib_c/zstd-1.5.2/lib/decompress/zstd_ddict.h +44 -0
  99. data/ext/zstdlib_c/zstd-1.5.2/lib/decompress/zstd_decompress.c +2230 -0
  100. data/ext/zstdlib_c/zstd-1.5.2/lib/decompress/zstd_decompress_block.c +2072 -0
  101. data/ext/zstdlib_c/zstd-1.5.2/lib/decompress/zstd_decompress_block.h +68 -0
  102. data/ext/zstdlib_c/zstd-1.5.2/lib/decompress/zstd_decompress_internal.h +236 -0
  103. data/ext/zstdlib_c/zstd-1.5.2/lib/zdict.h +452 -0
  104. data/ext/zstdlib_c/zstd-1.5.2/lib/zstd.h +2575 -0
  105. data/ext/zstdlib_c/zstd-1.5.2/lib/zstd_errors.h +95 -0
  106. data/ext/zstdlib_c/zstd-1.5.2/zlibWrapper/gzclose.c +28 -0
  107. data/ext/zstdlib_c/zstd-1.5.2/zlibWrapper/gzcompatibility.h +68 -0
  108. data/ext/zstdlib_c/zstd-1.5.2/zlibWrapper/gzguts.h +229 -0
  109. data/ext/zstdlib_c/zstd-1.5.2/zlibWrapper/gzlib.c +640 -0
  110. data/ext/zstdlib_c/zstd-1.5.2/zlibWrapper/gzread.c +678 -0
  111. data/ext/zstdlib_c/zstd-1.5.2/zlibWrapper/gzwrite.c +671 -0
  112. data/ext/zstdlib_c/zstd-1.5.2/zlibWrapper/zstd_zlibwrapper.c +1198 -0
  113. data/ext/zstdlib_c/zstd-1.5.2/zlibWrapper/zstd_zlibwrapper.h +88 -0
  114. data/ext/zstdlib_c/zstd.mk +15 -0
  115. data/lib/2.4/zstdlib_c.bundle +0 -0
  116. data/lib/2.5/zstdlib_c.bundle +0 -0
  117. data/lib/2.6/zstdlib_c.bundle +0 -0
  118. data/lib/2.7/zstdlib_c.bundle +0 -0
  119. data/lib/3.0/zstdlib_c.bundle +0 -0
  120. data/lib/3.1/zstdlib_c.bundle +0 -0
  121. data/lib/zstdlib.rb +6 -0
  122. data/test/zstdlib_test.rb +21 -0
  123. metadata +237 -0
@@ -0,0 +1,88 @@
1
+ /*
2
+ * Copyright (c) 2016-2021, Przemyslaw Skibinski, Yann Collet, Facebook, Inc.
3
+ * All rights reserved.
4
+ *
5
+ * This source code is licensed under both the BSD-style license (found in the
6
+ * LICENSE file in the root directory of this source tree) and the GPLv2 (found
7
+ * in the COPYING file in the root directory of this source tree).
8
+ * You may select, at your option, one of the above-listed licenses.
9
+ */
10
+
11
+ #ifndef ZSTD_ZLIBWRAPPER_H
12
+ #define ZSTD_ZLIBWRAPPER_H
13
+
14
+ #if defined (__cplusplus)
15
+ extern "C" {
16
+ #endif
17
+
18
+
19
+ #define ZLIB_CONST
20
+ #define Z_PREFIX
21
+ #define ZLIB_INTERNAL /* disables gz*64 functions but fixes zlib 1.2.4 with Z_PREFIX */
22
+ #include <zlib.h>
23
+
24
+ #if !defined(z_const)
25
+ #define z_const
26
+ #endif
27
+
28
+
29
+ /* returns a string with version of zstd library */
30
+ const char * zstdVersion(void);
31
+
32
+
33
+ /*** COMPRESSION ***/
34
+ /* ZWRAP_useZSTDcompression() enables/disables zstd compression during runtime.
35
+ By default zstd compression is disabled. To enable zstd compression please use one of the methods:
36
+ - compilation with the additional option -DZWRAP_USE_ZSTD=1
37
+ - using '#define ZWRAP_USE_ZSTD 1' in source code before '#include "zstd_zlibwrapper.h"'
38
+ - calling ZWRAP_useZSTDcompression(1)
39
+ All above-mentioned methods will enable zstd compression for all threads.
40
+ Be aware that ZWRAP_useZSTDcompression() is not thread-safe and may lead to a race condition. */
41
+ void ZWRAP_useZSTDcompression(int turn_on);
42
+
43
+ /* checks if zstd compression is turned on */
44
+ int ZWRAP_isUsingZSTDcompression(void);
45
+
46
+ /* Changes a pledged source size for a given compression stream.
47
+ It will change ZSTD compression parameters what may improve compression speed and/or ratio.
48
+ The function should be called just after deflateInit() or deflateReset() and before deflate() or deflateSetDictionary().
49
+ It's only helpful when data is compressed in blocks.
50
+ There will be no change in case of deflateInit() or deflateReset() immediately followed by deflate(strm, Z_FINISH)
51
+ as this case is automatically detected. */
52
+ int ZWRAP_setPledgedSrcSize(z_streamp strm, unsigned long long pledgedSrcSize);
53
+
54
+ /* Similar to deflateReset but preserves dictionary set using deflateSetDictionary.
55
+ It should improve compression speed because there will be less calls to deflateSetDictionary
56
+ When using zlib compression this method redirects to deflateReset. */
57
+ int ZWRAP_deflateReset_keepDict(z_streamp strm);
58
+
59
+
60
+
61
+ /*** DECOMPRESSION ***/
62
+ typedef enum { ZWRAP_FORCE_ZLIB, ZWRAP_AUTO } ZWRAP_decompress_type;
63
+
64
+ /* ZWRAP_setDecompressionType() enables/disables automatic recognition of zstd/zlib compressed data during runtime.
65
+ By default auto-detection of zstd and zlib streams in enabled (ZWRAP_AUTO).
66
+ Forcing zlib decompression with ZWRAP_setDecompressionType(ZWRAP_FORCE_ZLIB) slightly improves
67
+ decompression speed of zlib-encoded streams.
68
+ Be aware that ZWRAP_setDecompressionType() is not thread-safe and may lead to a race condition. */
69
+ void ZWRAP_setDecompressionType(ZWRAP_decompress_type type);
70
+
71
+ /* checks zstd decompression type */
72
+ ZWRAP_decompress_type ZWRAP_getDecompressionType(void);
73
+
74
+ /* Checks if zstd decompression is used for a given stream.
75
+ If will return 1 only when inflate() was called and zstd header was detected. */
76
+ int ZWRAP_isUsingZSTDdecompression(z_streamp strm);
77
+
78
+ /* Similar to inflateReset but preserves dictionary set using inflateSetDictionary.
79
+ inflate() will return Z_NEED_DICT only for the first time what will improve decompression speed.
80
+ For zlib streams this method redirects to inflateReset. */
81
+ int ZWRAP_inflateReset_keepDict(z_streamp strm);
82
+
83
+
84
+ #if defined (__cplusplus)
85
+ }
86
+ #endif
87
+
88
+ #endif /* ZSTD_ZLIBWRAPPER_H */
@@ -0,0 +1,15 @@
1
+ VPATH := $(SRCDIR)/common $(SRCDIR)/compress $(SRCDIR)/decompress
2
+
3
+ CSRCS := $(foreach dir,$(VPATH),$(wildcard $(dir)/*.c))
4
+ SSRCS := $(foreach dir,$(VPATH),$(wildcard $(dir)/*.S))
5
+ OBJS := $(patsubst %.c,%.o,$(foreach file,$(CSRCS),$(notdir $(file)))) $(patsubst %.S,%.o,$(foreach file,$(SSRCS),$(notdir $(file))))
6
+
7
+ CPPFLAGS += -I$(SRCDIR) -I$(SRCDIR)/common
8
+
9
+ LIB = ../libzstd.a
10
+
11
+ $(LIB) : $(OBJS)
12
+ $(AR) cr $@ $^
13
+
14
+ clean :
15
+ $(RM) -f $(LIB) $(OBJS)
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/lib/zstdlib.rb ADDED
@@ -0,0 +1,6 @@
1
+ begin
2
+ RUBY_VERSION =~ /(\d+\.\d+)/
3
+ require "#{$1}/zstdlib_c"
4
+ rescue LoadError
5
+ require 'zstdlib_c'
6
+ end
@@ -0,0 +1,21 @@
1
+ require 'test/unit'
2
+ require 'zstdlib'
3
+
4
+ class ZstdlibTest < Test::Unit::TestCase
5
+
6
+
7
+ def test_simple
8
+ hello = %~Hello, Zstd!~
9
+ assert_equal Zstdlib.inflate(Zstdlib.deflate(hello)), hello
10
+ end
11
+
12
+ def test_incremental_compress_simple
13
+ out = String.new
14
+ parts = %w[123 456 789]
15
+ zstd = Zstdlib::Deflate.new
16
+ parts.each {|p| out << zstd.deflate(p)}
17
+ out << zstd.finish
18
+ assert_equal Zstdlib.inflate(out), parts.join
19
+ end
20
+
21
+ end
metadata ADDED
@@ -0,0 +1,237 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zstdlib
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.9.0
5
+ platform: arm64-darwin
6
+ authors:
7
+ - Oleg A. Khlybov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-03-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake-compiler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake-compiler-dock
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 1.2.0
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 1.2.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: test-unit
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: A Zlib drop-in replacement implementing Zstandard compression algorithm
84
+ email:
85
+ - fougas@mail.ru
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".yardopts"
91
+ - CHANGES.md
92
+ - Gemfile
93
+ - README.md
94
+ - Rakefile
95
+ - ext/zstdlib_c/extconf.rb
96
+ - ext/zstdlib_c/ruby/zlib-2.2/zstdlib.c
97
+ - ext/zstdlib_c/ruby/zlib-2.3/zstdlib.c
98
+ - ext/zstdlib_c/ruby/zlib-2.4/zstdlib.c
99
+ - ext/zstdlib_c/ruby/zlib-2.5/zstdlib.c
100
+ - ext/zstdlib_c/ruby/zlib-2.6/zstdlib.c
101
+ - ext/zstdlib_c/ruby/zlib-2.7/zstdlib.c
102
+ - ext/zstdlib_c/ruby/zlib-3.0/zstdlib.c
103
+ - ext/zstdlib_c/ruby/zlib-3.1/zstdlib.c
104
+ - ext/zstdlib_c/zlib-1.2.11/adler32.c
105
+ - ext/zstdlib_c/zlib-1.2.11/compress.c
106
+ - ext/zstdlib_c/zlib-1.2.11/crc32.c
107
+ - ext/zstdlib_c/zlib-1.2.11/crc32.h
108
+ - ext/zstdlib_c/zlib-1.2.11/deflate.c
109
+ - ext/zstdlib_c/zlib-1.2.11/deflate.h
110
+ - ext/zstdlib_c/zlib-1.2.11/gzclose.c
111
+ - ext/zstdlib_c/zlib-1.2.11/gzguts.h
112
+ - ext/zstdlib_c/zlib-1.2.11/gzlib.c
113
+ - ext/zstdlib_c/zlib-1.2.11/gzread.c
114
+ - ext/zstdlib_c/zlib-1.2.11/gzwrite.c
115
+ - ext/zstdlib_c/zlib-1.2.11/infback.c
116
+ - ext/zstdlib_c/zlib-1.2.11/inffast.c
117
+ - ext/zstdlib_c/zlib-1.2.11/inffast.h
118
+ - ext/zstdlib_c/zlib-1.2.11/inffixed.h
119
+ - ext/zstdlib_c/zlib-1.2.11/inflate.c
120
+ - ext/zstdlib_c/zlib-1.2.11/inflate.h
121
+ - ext/zstdlib_c/zlib-1.2.11/inftrees.c
122
+ - ext/zstdlib_c/zlib-1.2.11/inftrees.h
123
+ - ext/zstdlib_c/zlib-1.2.11/trees.c
124
+ - ext/zstdlib_c/zlib-1.2.11/trees.h
125
+ - ext/zstdlib_c/zlib-1.2.11/uncompr.c
126
+ - ext/zstdlib_c/zlib-1.2.11/zconf.h
127
+ - ext/zstdlib_c/zlib-1.2.11/zlib.h
128
+ - ext/zstdlib_c/zlib-1.2.11/zutil.c
129
+ - ext/zstdlib_c/zlib-1.2.11/zutil.h
130
+ - ext/zstdlib_c/zlib.mk
131
+ - ext/zstdlib_c/zlibwrapper.mk
132
+ - ext/zstdlib_c/zlibwrapper/zlibwrapper.c
133
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/bitstream.h
134
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/compiler.h
135
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/cpu.h
136
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/debug.c
137
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/debug.h
138
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/entropy_common.c
139
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/error_private.c
140
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/error_private.h
141
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/fse.h
142
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/fse_decompress.c
143
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/huf.h
144
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/mem.h
145
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/pool.c
146
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/pool.h
147
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/portability_macros.h
148
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/threading.c
149
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/threading.h
150
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/xxhash.c
151
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/xxhash.h
152
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/zstd_common.c
153
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/zstd_deps.h
154
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/zstd_internal.h
155
+ - ext/zstdlib_c/zstd-1.5.2/lib/common/zstd_trace.h
156
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/clevels.h
157
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/fse_compress.c
158
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/hist.c
159
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/hist.h
160
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/huf_compress.c
161
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress.c
162
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_internal.h
163
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_literals.c
164
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_literals.h
165
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_sequences.c
166
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_sequences.h
167
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_superblock.c
168
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_compress_superblock.h
169
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_cwksp.h
170
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_double_fast.c
171
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_double_fast.h
172
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_fast.c
173
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_fast.h
174
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_lazy.c
175
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_lazy.h
176
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_ldm.c
177
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_ldm.h
178
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_ldm_geartab.h
179
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_opt.c
180
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_opt.h
181
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstdmt_compress.c
182
+ - ext/zstdlib_c/zstd-1.5.2/lib/compress/zstdmt_compress.h
183
+ - ext/zstdlib_c/zstd-1.5.2/lib/decompress/huf_decompress.c
184
+ - ext/zstdlib_c/zstd-1.5.2/lib/decompress/huf_decompress_amd64.S
185
+ - ext/zstdlib_c/zstd-1.5.2/lib/decompress/zstd_ddict.c
186
+ - ext/zstdlib_c/zstd-1.5.2/lib/decompress/zstd_ddict.h
187
+ - ext/zstdlib_c/zstd-1.5.2/lib/decompress/zstd_decompress.c
188
+ - ext/zstdlib_c/zstd-1.5.2/lib/decompress/zstd_decompress_block.c
189
+ - ext/zstdlib_c/zstd-1.5.2/lib/decompress/zstd_decompress_block.h
190
+ - ext/zstdlib_c/zstd-1.5.2/lib/decompress/zstd_decompress_internal.h
191
+ - ext/zstdlib_c/zstd-1.5.2/lib/zdict.h
192
+ - ext/zstdlib_c/zstd-1.5.2/lib/zstd.h
193
+ - ext/zstdlib_c/zstd-1.5.2/lib/zstd_errors.h
194
+ - ext/zstdlib_c/zstd-1.5.2/zlibWrapper/gzclose.c
195
+ - ext/zstdlib_c/zstd-1.5.2/zlibWrapper/gzcompatibility.h
196
+ - ext/zstdlib_c/zstd-1.5.2/zlibWrapper/gzguts.h
197
+ - ext/zstdlib_c/zstd-1.5.2/zlibWrapper/gzlib.c
198
+ - ext/zstdlib_c/zstd-1.5.2/zlibWrapper/gzread.c
199
+ - ext/zstdlib_c/zstd-1.5.2/zlibWrapper/gzwrite.c
200
+ - ext/zstdlib_c/zstd-1.5.2/zlibWrapper/zstd_zlibwrapper.c
201
+ - ext/zstdlib_c/zstd-1.5.2/zlibWrapper/zstd_zlibwrapper.h
202
+ - ext/zstdlib_c/zstd.mk
203
+ - lib/2.4/zstdlib_c.bundle
204
+ - lib/2.5/zstdlib_c.bundle
205
+ - lib/2.6/zstdlib_c.bundle
206
+ - lib/2.7/zstdlib_c.bundle
207
+ - lib/3.0/zstdlib_c.bundle
208
+ - lib/3.1/zstdlib_c.bundle
209
+ - lib/zstdlib.rb
210
+ - test/zstdlib_test.rb
211
+ homepage: https://github.com/okhlybov/zstdlib
212
+ licenses:
213
+ - BSD-3-Clause
214
+ metadata: {}
215
+ post_install_message:
216
+ rdoc_options: []
217
+ require_paths:
218
+ - lib
219
+ required_ruby_version: !ruby/object:Gem::Requirement
220
+ requirements:
221
+ - - ">="
222
+ - !ruby/object:Gem::Version
223
+ version: '2.4'
224
+ - - "<"
225
+ - !ruby/object:Gem::Version
226
+ version: 3.2.dev
227
+ required_rubygems_version: !ruby/object:Gem::Requirement
228
+ requirements:
229
+ - - ">="
230
+ - !ruby/object:Gem::Version
231
+ version: '0'
232
+ requirements: []
233
+ rubygems_version: 3.3.4
234
+ signing_key:
235
+ specification_version: 4
236
+ summary: Ruby interface for the Zstdandard data compression library
237
+ test_files: []