-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade xxHash to a development version
A [bug][] was found in the implementation of `XXH3_128bits_withSecretandSeed`. It has been fixed but not yet released, so we are bumping to the current development version. [bug]: Cyan4973/xxHash#894
- Loading branch information
1 parent
3e03234
commit c497729
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule xxHash
updated
26 files
+72 −68 | .github/workflows/ci.yml | |
+72 −0 | .github/workflows/scorecard.yml | |
+11 −3 | .gitignore | |
+0 −142 | .travis.yml | |
+1 −0 | Doxyfile | |
+1 −0 | Doxyfile-internal | |
+35 −12 | Makefile | |
+47 −30 | README.md | |
+7 −3 | cli/xsum_bench.c | |
+17 −2 | cli/xsum_os_specific.c | |
+47 −8 | cli/xsum_sanity_check.c | |
+81 −20 | cli/xxhsum.1 | |
+4 −5 | cli/xxhsum.1.md | |
+55 −30 | cli/xxhsum.c | |
+12 −0 | clib.json | |
+5 −19 | cmake_unofficial/CMakeLists.txt | |
+11 −0 | fuzz/fuzzer.c | |
+1 −0 | tests/bench/.gitignore | |
+5 −2 | tests/bench/Makefile | |
+8 −5 | tests/collisions/Makefile | |
+99 −73 | tests/collisions/main.c | |
+52 −12 | tests/sanity_test.c | |
+6 −6 | tests/sanity_test_vectors_generator.c | |
+11 −7 | xxh_x86dispatch.c | |
+3 −4 | xxhash.c | |
+539 −224 | xxhash.h |