3 unstable releases

0.2.0-alpha.0 Jul 25, 2025
0.1.0 Jan 4, 2025
0.1.0-alpha Dec 13, 2024

#2760 in Algorithms

Download history 2/week @ 2025-09-11 2/week @ 2025-09-18 2/week @ 2025-09-25 3/week @ 2025-10-02

135 downloads per month

MIT/Apache

16KB
369 lines

MuseMap

Fast DoS-resistant hashmap based on MuseAir hash algorithm.

The output of the Hasher in this crate may vary depending on the version or the platform. It should only be used for in-memory maps.

Due to MuseAir is non-crypto, this crate should NOT be used for cryptographic purpose.

Usage

use musemap::{HashMap, HashMapExt};

let mut map = HashMap::new();
map.insert("hello", "world");

No runtime deps