zstdlib 0.1.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGES.md +9 -0
- data/Gemfile +3 -0
- data/README.md +96 -0
- data/Rakefile +29 -0
- data/ext/zstdlib/extconf.rb +53 -0
- data/ext/zstdlib/ruby/zlib-2.2/zlib.c +4659 -0
- data/ext/zstdlib/ruby/zlib-2.3/zlib.c +4686 -0
- data/ext/zstdlib/ruby/zlib-2.4/zlib.c +4843 -0
- data/ext/zstdlib/ruby/zlib-2.5/zlib.c +4848 -0
- data/ext/zstdlib/ruby/zlib-2.6/zlib.c +4890 -0
- data/ext/zstdlib/zlib-1.2.11/adler32.c +186 -0
- data/ext/zstdlib/zlib-1.2.11/compress.c +86 -0
- data/ext/zstdlib/zlib-1.2.11/crc32.c +442 -0
- data/ext/zstdlib/zlib-1.2.11/crc32.h +441 -0
- data/ext/zstdlib/zlib-1.2.11/deflate.c +2163 -0
- data/ext/zstdlib/zlib-1.2.11/deflate.h +349 -0
- data/ext/zstdlib/zlib-1.2.11/gzclose.c +25 -0
- data/ext/zstdlib/zlib-1.2.11/gzguts.h +218 -0
- data/ext/zstdlib/zlib-1.2.11/gzlib.c +637 -0
- data/ext/zstdlib/zlib-1.2.11/gzread.c +654 -0
- data/ext/zstdlib/zlib-1.2.11/gzwrite.c +665 -0
- data/ext/zstdlib/zlib-1.2.11/infback.c +640 -0
- data/ext/zstdlib/zlib-1.2.11/inffast.c +323 -0
- data/ext/zstdlib/zlib-1.2.11/inffast.h +11 -0
- data/ext/zstdlib/zlib-1.2.11/inffixed.h +94 -0
- data/ext/zstdlib/zlib-1.2.11/inflate.c +1561 -0
- data/ext/zstdlib/zlib-1.2.11/inflate.h +125 -0
- data/ext/zstdlib/zlib-1.2.11/inftrees.c +304 -0
- data/ext/zstdlib/zlib-1.2.11/inftrees.h +62 -0
- data/ext/zstdlib/zlib-1.2.11/trees.c +1203 -0
- data/ext/zstdlib/zlib-1.2.11/trees.h +128 -0
- data/ext/zstdlib/zlib-1.2.11/uncompr.c +93 -0
- data/ext/zstdlib/zlib-1.2.11/zconf.h +534 -0
- data/ext/zstdlib/zlib-1.2.11/zlib.h +1912 -0
- data/ext/zstdlib/zlib-1.2.11/zutil.c +325 -0
- data/ext/zstdlib/zlib-1.2.11/zutil.h +271 -0
- data/ext/zstdlib/zlib.mk +14 -0
- data/ext/zstdlib/zlibwrapper.mk +14 -0
- data/ext/zstdlib/zlibwrapper/zlibwrapper.c +14 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/bitstream.h +455 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/compiler.h +140 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/cpu.h +215 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/debug.c +44 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/debug.h +134 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/entropy_common.c +236 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/error_private.c +54 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/error_private.h +76 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/fse.h +708 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/fse_decompress.c +309 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/huf.h +358 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/mem.h +380 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/pool.c +340 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/pool.h +84 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/threading.c +75 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/threading.h +123 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/xxhash.c +876 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/xxhash.h +305 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/zstd_common.c +83 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/zstd_errors.h +93 -0
- data/ext/zstdlib/zstd-1.3.8/lib/common/zstd_internal.h +266 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/fse_compress.c +721 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/hist.c +203 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/hist.h +95 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/huf_compress.c +798 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstd_compress.c +4290 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstd_compress_internal.h +860 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstd_double_fast.c +499 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstd_double_fast.h +38 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstd_fast.c +391 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstd_fast.h +37 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstd_lazy.c +1106 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstd_lazy.h +67 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstd_ldm.c +597 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstd_ldm.h +105 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstd_opt.c +1217 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstd_opt.h +56 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstdmt_compress.c +2107 -0
- data/ext/zstdlib/zstd-1.3.8/lib/compress/zstdmt_compress.h +174 -0
- data/ext/zstdlib/zstd-1.3.8/lib/decompress/huf_decompress.c +1232 -0
- data/ext/zstdlib/zstd-1.3.8/lib/decompress/zstd_ddict.c +240 -0
- data/ext/zstdlib/zstd-1.3.8/lib/decompress/zstd_ddict.h +44 -0
- data/ext/zstdlib/zstd-1.3.8/lib/decompress/zstd_decompress.c +1672 -0
- data/ext/zstdlib/zstd-1.3.8/lib/decompress/zstd_decompress_block.c +1307 -0
- data/ext/zstdlib/zstd-1.3.8/lib/decompress/zstd_decompress_block.h +59 -0
- data/ext/zstdlib/zstd-1.3.8/lib/decompress/zstd_decompress_internal.h +168 -0
- data/ext/zstdlib/zstd-1.3.8/lib/zstd.h +1766 -0
- data/ext/zstdlib/zstd-1.3.8/zlibWrapper/gzclose.c +28 -0
- data/ext/zstdlib/zstd-1.3.8/zlibWrapper/gzcompatibility.h +68 -0
- data/ext/zstdlib/zstd-1.3.8/zlibWrapper/gzguts.h +227 -0
- data/ext/zstdlib/zstd-1.3.8/zlibWrapper/gzlib.c +640 -0
- data/ext/zstdlib/zstd-1.3.8/zlibWrapper/gzread.c +670 -0
- data/ext/zstdlib/zstd-1.3.8/zlibWrapper/gzwrite.c +671 -0
- data/ext/zstdlib/zstd-1.3.8/zlibWrapper/zstd_zlibwrapper.c +1105 -0
- data/ext/zstdlib/zstd-1.3.8/zlibWrapper/zstd_zlibwrapper.h +88 -0
- data/ext/zstdlib/zstd.mk +14 -0
- data/lib/2.2/zstdlib.so +0 -0
- data/lib/2.3/zstdlib.so +0 -0
- data/lib/2.4/zstdlib.so +0 -0
- data/lib/2.5/zstdlib.so +0 -0
- data/lib/2.6/zstdlib.so +0 -0
- data/lib/zstdlib.rb +6 -0
- data/test/zstdlib_test.rb +21 -0
- metadata +205 -0
@@ -0,0 +1,88 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2016-present, 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 */
|
data/ext/zstdlib/zstd.mk
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
VPATH := $(SRCDIR)/common $(SRCDIR)/compress $(SRCDIR)/decompress
|
2
|
+
|
3
|
+
SRCS := $(foreach dir,$(VPATH),$(wildcard $(dir)/*.c))
|
4
|
+
OBJS := $(patsubst %.c,%.o,$(foreach file,$(SRCS),$(notdir $(file))))
|
5
|
+
|
6
|
+
CPPFLAGS += -I$(SRCDIR) -I$(SRCDIR)/common
|
7
|
+
|
8
|
+
LIB = ../libzstd.a
|
9
|
+
|
10
|
+
$(LIB) : $(OBJS)
|
11
|
+
$(AR) cr $@ $^
|
12
|
+
|
13
|
+
clean :
|
14
|
+
$(RM) -f $(LIB) $(OBJS)
|
data/lib/2.2/zstdlib.so
ADDED
Binary file
|
data/lib/2.3/zstdlib.so
ADDED
Binary file
|
data/lib/2.4/zstdlib.so
ADDED
Binary file
|
data/lib/2.5/zstdlib.so
ADDED
Binary file
|
data/lib/2.6/zstdlib.so
ADDED
Binary file
|
data/lib/zstdlib.rb
ADDED
@@ -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,205 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: zstdlib
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: x64-mingw32
|
6
|
+
authors:
|
7
|
+
- Oleg A. Khlybov
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-04-11 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: 0.7.2
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.7.2
|
69
|
+
description: Zlib drop-in replacement implementing Zstd (de)compression algorithm
|
70
|
+
email:
|
71
|
+
- fougas@mail.ru
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- CHANGES.md
|
77
|
+
- Gemfile
|
78
|
+
- README.md
|
79
|
+
- Rakefile
|
80
|
+
- ext/zstdlib/extconf.rb
|
81
|
+
- ext/zstdlib/ruby/zlib-2.2/zlib.c
|
82
|
+
- ext/zstdlib/ruby/zlib-2.3/zlib.c
|
83
|
+
- ext/zstdlib/ruby/zlib-2.4/zlib.c
|
84
|
+
- ext/zstdlib/ruby/zlib-2.5/zlib.c
|
85
|
+
- ext/zstdlib/ruby/zlib-2.6/zlib.c
|
86
|
+
- ext/zstdlib/zlib-1.2.11/adler32.c
|
87
|
+
- ext/zstdlib/zlib-1.2.11/compress.c
|
88
|
+
- ext/zstdlib/zlib-1.2.11/crc32.c
|
89
|
+
- ext/zstdlib/zlib-1.2.11/crc32.h
|
90
|
+
- ext/zstdlib/zlib-1.2.11/deflate.c
|
91
|
+
- ext/zstdlib/zlib-1.2.11/deflate.h
|
92
|
+
- ext/zstdlib/zlib-1.2.11/gzclose.c
|
93
|
+
- ext/zstdlib/zlib-1.2.11/gzguts.h
|
94
|
+
- ext/zstdlib/zlib-1.2.11/gzlib.c
|
95
|
+
- ext/zstdlib/zlib-1.2.11/gzread.c
|
96
|
+
- ext/zstdlib/zlib-1.2.11/gzwrite.c
|
97
|
+
- ext/zstdlib/zlib-1.2.11/infback.c
|
98
|
+
- ext/zstdlib/zlib-1.2.11/inffast.c
|
99
|
+
- ext/zstdlib/zlib-1.2.11/inffast.h
|
100
|
+
- ext/zstdlib/zlib-1.2.11/inffixed.h
|
101
|
+
- ext/zstdlib/zlib-1.2.11/inflate.c
|
102
|
+
- ext/zstdlib/zlib-1.2.11/inflate.h
|
103
|
+
- ext/zstdlib/zlib-1.2.11/inftrees.c
|
104
|
+
- ext/zstdlib/zlib-1.2.11/inftrees.h
|
105
|
+
- ext/zstdlib/zlib-1.2.11/trees.c
|
106
|
+
- ext/zstdlib/zlib-1.2.11/trees.h
|
107
|
+
- ext/zstdlib/zlib-1.2.11/uncompr.c
|
108
|
+
- ext/zstdlib/zlib-1.2.11/zconf.h
|
109
|
+
- ext/zstdlib/zlib-1.2.11/zlib.h
|
110
|
+
- ext/zstdlib/zlib-1.2.11/zutil.c
|
111
|
+
- ext/zstdlib/zlib-1.2.11/zutil.h
|
112
|
+
- ext/zstdlib/zlib.mk
|
113
|
+
- ext/zstdlib/zlibwrapper.mk
|
114
|
+
- ext/zstdlib/zlibwrapper/zlibwrapper.c
|
115
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/bitstream.h
|
116
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/compiler.h
|
117
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/cpu.h
|
118
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/debug.c
|
119
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/debug.h
|
120
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/entropy_common.c
|
121
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/error_private.c
|
122
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/error_private.h
|
123
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/fse.h
|
124
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/fse_decompress.c
|
125
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/huf.h
|
126
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/mem.h
|
127
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/pool.c
|
128
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/pool.h
|
129
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/threading.c
|
130
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/threading.h
|
131
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/xxhash.c
|
132
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/xxhash.h
|
133
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/zstd_common.c
|
134
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/zstd_errors.h
|
135
|
+
- ext/zstdlib/zstd-1.3.8/lib/common/zstd_internal.h
|
136
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/fse_compress.c
|
137
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/hist.c
|
138
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/hist.h
|
139
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/huf_compress.c
|
140
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstd_compress.c
|
141
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstd_compress_internal.h
|
142
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstd_double_fast.c
|
143
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstd_double_fast.h
|
144
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstd_fast.c
|
145
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstd_fast.h
|
146
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstd_lazy.c
|
147
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstd_lazy.h
|
148
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstd_ldm.c
|
149
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstd_ldm.h
|
150
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstd_opt.c
|
151
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstd_opt.h
|
152
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstdmt_compress.c
|
153
|
+
- ext/zstdlib/zstd-1.3.8/lib/compress/zstdmt_compress.h
|
154
|
+
- ext/zstdlib/zstd-1.3.8/lib/decompress/huf_decompress.c
|
155
|
+
- ext/zstdlib/zstd-1.3.8/lib/decompress/zstd_ddict.c
|
156
|
+
- ext/zstdlib/zstd-1.3.8/lib/decompress/zstd_ddict.h
|
157
|
+
- ext/zstdlib/zstd-1.3.8/lib/decompress/zstd_decompress.c
|
158
|
+
- ext/zstdlib/zstd-1.3.8/lib/decompress/zstd_decompress_block.c
|
159
|
+
- ext/zstdlib/zstd-1.3.8/lib/decompress/zstd_decompress_block.h
|
160
|
+
- ext/zstdlib/zstd-1.3.8/lib/decompress/zstd_decompress_internal.h
|
161
|
+
- ext/zstdlib/zstd-1.3.8/lib/zstd.h
|
162
|
+
- ext/zstdlib/zstd-1.3.8/zlibWrapper/gzclose.c
|
163
|
+
- ext/zstdlib/zstd-1.3.8/zlibWrapper/gzcompatibility.h
|
164
|
+
- ext/zstdlib/zstd-1.3.8/zlibWrapper/gzguts.h
|
165
|
+
- ext/zstdlib/zstd-1.3.8/zlibWrapper/gzlib.c
|
166
|
+
- ext/zstdlib/zstd-1.3.8/zlibWrapper/gzread.c
|
167
|
+
- ext/zstdlib/zstd-1.3.8/zlibWrapper/gzwrite.c
|
168
|
+
- ext/zstdlib/zstd-1.3.8/zlibWrapper/zstd_zlibwrapper.c
|
169
|
+
- ext/zstdlib/zstd-1.3.8/zlibWrapper/zstd_zlibwrapper.h
|
170
|
+
- ext/zstdlib/zstd.mk
|
171
|
+
- lib/2.2/zstdlib.so
|
172
|
+
- lib/2.3/zstdlib.so
|
173
|
+
- lib/2.4/zstdlib.so
|
174
|
+
- lib/2.5/zstdlib.so
|
175
|
+
- lib/2.6/zstdlib.so
|
176
|
+
- lib/zstdlib.rb
|
177
|
+
- test/zstdlib_test.rb
|
178
|
+
homepage: https://bitbucket.org/fougas/zstdlib
|
179
|
+
licenses:
|
180
|
+
- BSD-3-Clause
|
181
|
+
metadata: {}
|
182
|
+
post_install_message:
|
183
|
+
rdoc_options: []
|
184
|
+
require_paths:
|
185
|
+
- lib
|
186
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
187
|
+
requirements:
|
188
|
+
- - ">="
|
189
|
+
- !ruby/object:Gem::Version
|
190
|
+
version: '2.2'
|
191
|
+
- - "<"
|
192
|
+
- !ruby/object:Gem::Version
|
193
|
+
version: 2.7.dev
|
194
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
195
|
+
requirements:
|
196
|
+
- - ">="
|
197
|
+
- !ruby/object:Gem::Version
|
198
|
+
version: '0'
|
199
|
+
requirements: []
|
200
|
+
rubyforge_project:
|
201
|
+
rubygems_version: 2.7.9
|
202
|
+
signing_key:
|
203
|
+
specification_version: 4
|
204
|
+
summary: Ruby interface for the Zstd (de)compression library
|
205
|
+
test_files: []
|