Skip to content

Commit

Permalink
Merge pull request #4 from 10XGenomics/pmarks/update-lz4
Browse files Browse the repository at this point in the history
update lz4
  • Loading branch information
pmarks authored Jun 4, 2020
2 parents 1de1c83 + 3c8bc91 commit 4dcd504
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lz4-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "lz4-sys"
license = "MIT"
links = "lz4"
version = "1.8.3"
version = "1.9.2"
authors = [ "Jens Heyens <jens.heyens@ewetel.net", "Artem V. Navrotskiy <bozaro@buzzsoft.ru>" ]
build = "build.rs"
description = "Rust LZ4 sys package."
Expand Down
2 changes: 1 addition & 1 deletion lz4-sys/liblz4
Submodule liblz4 updated 85 files
+5 −38 .circleci/config.yml
+12 −0 .circleci/images/primary/Dockerfile
+3 −0 .gitignore
+155 −98 .travis.yml
+35 −22 Makefile
+87 −0 Makefile.inc
+20 −0 NEWS
+17 −15 README.md
+1 −0 contrib/cmake_unofficial/CMakeLists.txt
+16 −14 contrib/gen_manual/gen_manual.cpp
+39 −0 contrib/meson/GetLz4LibraryVersion.py
+55 −0 contrib/meson/InstallSymlink.py
+34 −0 contrib/meson/README.md
+43 −0 contrib/meson/contrib/gen_manual/meson.build
+10 −0 contrib/meson/contrib/meson.build
+49 −0 contrib/meson/examples/meson.build
+57 −0 contrib/meson/lib/meson.build
+125 −0 contrib/meson/meson.build
+24 −0 contrib/meson/meson_options.txt
+52 −0 contrib/meson/programs/meson.build
+93 −0 contrib/meson/tests/meson.build
+29 −0 contrib/snap/README.md
+31 −0 contrib/snap/snapcraft.yaml
+ doc/images/usingCDict_1_8_2.png
+46 −38 doc/lz4_Block_format.md
+11 −8 doc/lz4_Frame_format.md
+254 −152 doc/lz4_manual.html
+74 −32 doc/lz4frame_manual.html
+6 −3 examples/HCStreaming_ringBuffer.c
+1 −10 examples/Makefile
+1 −1 examples/blockStreaming_doubleBuffer.c
+3 −3 examples/blockStreaming_doubleBuffer.md
+1 −1 examples/blockStreaming_lineByLine.c
+13 −13 examples/compress_functions.c
+2 −2 examples/dictionaryRandomAccess.c
+11 −10 examples/frameCompress.c
+30 −25 examples/simple_buffer.c
+55 −39 lib/Makefile
+56 −9 lib/README.md
+0 −62 lib/dll/liblz4.def
+35 −0 lib/liblz4-dll.rc.in
+786 −357 lib/lz4.c
+308 −175 lib/lz4.h
+265 −187 lib/lz4frame.c
+115 −41 lib/lz4frame.h
+299 −173 lib/lz4hc.c
+165 −82 lib/lz4hc.h
+375 −239 lib/xxhash.c
+128 −93 lib/xxhash.h
+74 −0 ossfuzz/Makefile
+42 −0 ossfuzz/compress_frame_fuzzer.c
+51 −0 ossfuzz/compress_fuzzer.c
+57 −0 ossfuzz/compress_hc_fuzzer.c
+67 −0 ossfuzz/decompress_frame_fuzzer.c
+58 −0 ossfuzz/decompress_fuzzer.c
+48 −0 ossfuzz/fuzz.h
+94 −0 ossfuzz/fuzz_helpers.h
+51 −0 ossfuzz/lz4_helpers.c
+13 −0 ossfuzz/lz4_helpers.h
+23 −0 ossfuzz/ossfuzz.sh
+39 −0 ossfuzz/round_trip_frame_fuzzer.c
+50 −0 ossfuzz/round_trip_fuzzer.c
+39 −0 ossfuzz/round_trip_hc_fuzzer.c
+302 −0 ossfuzz/round_trip_stream_fuzzer.c
+74 −0 ossfuzz/standaloneengine.c
+21 −0 ossfuzz/travisoss.sh
+34 −33 programs/Makefile
+20 −7 programs/README.md
+6 −6 programs/bench.c
+27 −0 programs/lz4-exe.rc.in
+27 −17 programs/lz4.1
+32 −16 programs/lz4.1.md
+134 −69 programs/lz4cli.c
+570 −136 programs/lz4io.c
+41 −15 programs/lz4io.h
+41 −28 programs/util.h
+2 −0 tests/.gitignore
+93 −44 tests/Makefile
+311 −0 tests/checkFrame.c
+290 −125 tests/frametest.c
+89 −34 tests/fullbench.c
+556 −369 tests/fuzzer.c
+282 −0 tests/test-lz4-list.py
+72 −0 tests/test_custom_block_sizes.sh
+6 −11 visual/VS2017/lz4.sln

0 comments on commit 4dcd504

Please sign in to comment.