3 unstable releases

0.2.1 May 23, 2021
0.2.0 Apr 14, 2021
0.1.1 Apr 14, 2021
0.1.0 Feb 19, 2021

#1608 in Algorithms

Download history 292/week @ 2023-11-28 133/week @ 2023-12-05 169/week @ 2023-12-12 202/week @ 2023-12-19 39/week @ 2023-12-26 59/week @ 2024-01-02 94/week @ 2024-01-09 193/week @ 2024-01-16 238/week @ 2024-01-23 253/week @ 2024-01-30 276/week @ 2024-02-06 344/week @ 2024-02-13 165/week @ 2024-02-20 196/week @ 2024-02-27 258/week @ 2024-03-05 284/week @ 2024-03-12

936 downloads per month

MIT/Apache

10KB
225 lines

WyHash2

A simple, light and fast hashing algorithm written by Wang Yi. Ported to rust for your ease of use.

Thanks also goes to Eldruin their WyHash was very helpful for reference on getting started.

Features

  • nightly which enables some nightly only intrinsicts which can help improve performance.

  • std This is enabled by default, however can be disabled for no_std enviroments

Usage

A basic example:

use core::hash::Hasher;
use wyhash2::WyHash;

fn main() {
    let secret = 0;
    let mut hasher = WyHash::with_seed(secret);
    hasher.write(&[0, 1, 2]);
    println!("We got {}", hasher.finish());
}

Wyhash2 Implements BuildHasher which means it can be used as the hasher for the Hashmap

Usage with a Hashmap:

use wyhash2::WyHash;
use std::collections::HashMap;

fn main() {
    let hasher = WyHash::with_seed(0);
    let mut map: HashMap<String, String, WyHash> = HashMap::with_hasher(hasher);

    map.insert("Hello".to_string(), "World".to_string());

    println!("We got {}", map.get("Hello").unwrap());
}

no_std usage

[dependencies]
wyhash2 = { version = "...", default-features = false }

License

Licensed under either of

at your option.

Dependencies

~22KB