What's Changed
-
⚠️ Breaking change
The output format of the xxHash series algorithms in ezcheck 0.1.7 is the same as that of Cyan4973/xxHash and is no longer compatible with the output format of ezcheck 0.1.6. If you have already used ezcheck 0.1.6, for the XXHASH32 and XXHASH64 algorithms, please remove the0x
prefix at the beginning of the output. For XXHASH3_64, please change the0x
prefix at the beginning of the output toXXH3_
. For example,Algorithm Old Format New Format XXHASH32 0x0163d3a2 0163d3a2 XXHASH64 0x4a34911ba20e6c30 4a34911ba20e6c30 XXHASH3_64 0x802c0db623389036 XXH3_802c0db623389036 -
New algorithm alias
Now, you can usexxhash32
orxxh32
to use the XXHASH32 algorithm; you can usexxhash64
orxxh64
to use the XXHASH64 algorithm; you can usexxh3
,xxh3_64
,xxh3-64
,xxh3/64
,xxhash3_64
,xxhash3-64
, orxxhash3/64
to use the XXHASH3_64 algorithm. -
Update dependencies.
Full Changelog: 0.1.6...0.1.7