[package]
edition = "2024"
name = "hashmap-mem"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, low-overhead in-memory hashmap implementation optimized for performance using fxhash"
readme = "README.md"
keywords = [
"hashmap",
"performance",
"memory",
"fxhash",
"data-structure",
]
categories = [
"data-structures",
"caching",
"memory-management",
]
license = "MIT"
repository = "https://github.com/swamp/swamp"
[lib]
name = "hashmap_mem"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.fxhash]
version = "0.2.1"