[dependencies.ahash]
default-features = false
optional = true
version = "0.8"
[dependencies.hashbrown]
default-features = false
features = ["raw"]
version = "0.14.2"
[dependencies.parking_lot]
optional = true
version = "0.12"
[dependencies.rayon]
optional = true
version = "1.6"
[dependencies.stable_deref_trait]
default-features = false
features = ["alloc"]
version = "1.2"
[dev-dependencies.crossbeam-utils]
version = "0.8.7"
[features]
ahash = ["dep:ahash", "hashbrown/ahash"]
default = ["std", "ahash"]
rayon = ["dep:rayon", "hashbrown/rayon", "std"]
std = ["dep:parking_lot", "stable_deref_trait/std", "ahash?/std", "ahash?/runtime-rng"]
[package]
categories = ["caching", "concurrency", "data-structures", "rust-patterns", "no-std"]
description = "Single assignment and lazy maps"
documentation = "https://docs.rs/once_map"
edition = "2021"
keywords = ["map", "once", "lazy"]
license = "MIT OR Apache-2.0"
name = "once_map"
readme = "README.md"
repository = "https://github.com/a1phyr/once_map"
rust-version = "1.63"
version = "0.4.11"