[package]
edition = "2024"
name = "mule-map"
version = "0.1.4"
authors = ["Michael Hancock"]
build = false
exclude = [
"assets",
".github",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A hybrid between a HashMap and a lookup table"
readme = "README.md"
keywords = [
"hash",
"hashmap",
"hybrid",
"map",
"table",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/gringasalpastor/mule-map"
[lib]
name = "mule_map"
path = "src/lib.rs"
[dependencies.bytemuck]
version = "1.25.0"
[dependencies.num-traits]
version = "0.2.19"
features = ["i128"]
[dependencies.sealed]
version = "0.6.0"
[dev-dependencies.fnv_rs]
version = "0.4.4"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1