murmur2 0.1.0

murmur2 hash functions - see docs.rs
Documentation
  • Coverage
  • 100%
    10 out of 10 items documented0 out of 8 items with examples
  • Size
  • Source code size: 7.18 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 743.2 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • jcaesar/murmur2rs
    1 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • jcaesar

murmur2 Hash Functions

This is a pure Rust implementation of the murmur2 hash functions. It is tested against the original C++ implementation. To keep this crate no_std and dependency free, the tests live in a different crate, which is not published to crates.io. The implementations have not been particularly optimized for performance.

The original C++ implementations are architecture/endianness dependent. The only independent function provided is MurmurHashNeutral2. This crate does not follow that scheme, all functions are provided in an endianness-dependent and -independent version. The endianness-dependent versions have their name suffixed with a ne, for "native endian".