[dependencies.once_cell]
version = "1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.static_assertions]
version = "1"
[features]
miri_action_log = []
serde = ["dep:serde"]
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
rust_2018_idioms = "warn"
unreachable_pub = "warn"
[package]
authors = ["Andrew Sonin <sonin.cel@yandex.ru>"]
categories = ["data-structures", "concurrency"]
description = "Implements a vector-based slab-like map with an interface similar to that of HashMap, and also provides tools for generating lightweight identifiers that can be type-safely used as keys for this map.\n"
documentation = "https://docs.rs/blazemap/"
edition = "2021"
homepage = "https://github.com/andrewsonin/blazemap"
keywords = ["map", "slab", "hashmap"]
license = "MIT"
name = "blazemap"
readme = "README.md"
repository = "https://github.com/andrewsonin/blazemap"
version = "0.3.2"
[target."cfg(loom)".dependencies.loom]
features = ["checkpoint"]
version = "0.7"