musemap

Crates.iomusemap
lib.rsmusemap
version0.2.0-alpha.0
created_at2024-12-13 04:00:33.794136+00
updated_at2025-07-25 17:13:37.302673+00
descriptionFast DoS-resistant hashmap.
homepage
repositoryhttps://github.com/eternal-io/musemap
max_upload_size
id1481885
size15,524
K--Aethiax (eternal-io)

documentation

https://docs.rs/musemap

README

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");
Commit count: 2

cargo fmt