once_map 0.4.24

Single assignment and lazy maps
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.65"
name = "once_map"
version = "0.4.24"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Single assignment and lazy maps"
documentation = "https://docs.rs/once_map"
readme = "README.md"
keywords = [
    "map",
    "once",
    "lazy",
]
categories = [
    "caching",
    "concurrency",
    "data-structures",
    "rust-patterns",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/a1phyr/once_map"

[package.metadata.docs.rs]
all-features = true

[features]
ahash = ["dep:ahash"]
default = [
    "std",
    "ahash",
]
rayon = [
    "dep:rayon",
    "hashbrown/rayon",
    "std",
]
serde = ["dep:serde_core"]
std = [
    "dep:parking_lot",
    "stable_deref_trait/std",
    "ahash?/std",
    "ahash?/runtime-rng",
]

[lib]
name = "once_map"
path = "src/lib.rs"

[dependencies.ahash]
version = "0.8"
optional = true
default-features = false

[dependencies.equivalent]
version = "1.0"
optional = true

[dependencies.hashbrown]
version = ">=0.16,<=0.17"
default-features = false

[dependencies.parking_lot]
version = "0.12"
optional = true

[dependencies.rayon]
version = "1.6"
optional = true

[dependencies.serde_core]
version = "1.0.210"
optional = true
default-features = false

[dependencies.stable_deref_trait]
version = "1.2"
features = ["alloc"]
default-features = false