Implementation of xxHash in Rust
Version corresponds to xxHash releases
Each algorithm is implemented via feature, allowing precise control over code size.
xxh32
- Enables 32bit algorithm. Suitable for x86 targetsconst_xxh32
- const fn
version of xxh32
algorithmxxh64
- Enables 64 algorithm. Suitable for x86_64 targetsconst_xxh64
- const fn
version of xxh64
algorithmxxh3
- Enables xxh3
family of algorithms, superior to xxh32
and xxh64
in terms of performance.