pulse_map 0.6.3

A CPU cache-line hash table with zero-cost eviction. Every bucket fits in exactly one 64-byte cache line with embedded LFU+LRU eviction metadata.
Documentation
[package]
name = "pulse_map"
version = "0.6.3"
edition = "2021"
rust-version = "1.70.0"
authors = ["Deendayal Kumawat <deendayal_kumawat@outlook.com>"]
description = "A CPU cache-line hash table with zero-cost eviction. Every bucket fits in exactly one 64-byte cache line with embedded LFU+LRU eviction metadata."
license = "MIT OR Apache-2.0"
repository = "https://github.com/ddsha441981/pulse_map"
homepage = "https://github.com/ddsha441981/pulse_map"
documentation = "https://ddsha441981.github.io/pulse_map/"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
keywords = ["hashmap", "cache", "eviction", "performance", "lock-free"]
categories = ["data-structures", "caching", "no-std"]
readme = "README.md"

[dependencies]
wyhash = "0.5"

[features]
default = ["std"]
std = []
simd = []

[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
rand = "0.8"
rand_distr = "0.4"
lru = "0.12"
moka = { version = "0.12", features = ["sync"] }
quick_cache = "0.6"

[[bench]]
name = "benchmark"
harness = false

[[example]]
name = "basic"
required-features = ["std"]

[[example]]
name = "concurrent"
required-features = ["std"]

[[example]]
name = "all_scenarios"
required-features = ["std"]

[[example]]
name = "memory_baseline"
required-features = ["std"]

[[example]]
name = "production_suite_test"
required-features = ["std"]

[[example]]
name = "quality_and_readheavy"
required-features = ["std"]

[[example]]
name = "readratio_isolated"
required-features = ["std"]

[[example]]
name = "real_world_latency_spikes"
required-features = ["std"]

[profile.release]
opt-level = 3
lto = true
codegen-units = 1



# ═══════════════════════════════════════════════════════════════
# Documentation
# ═══════════════════════════════════════════════════════════════
#
# API Docs (docs.rs):
#   cargo doc --no-deps --open
#   RUSTDOCFLAGS="-D warnings" cargo doc --no-deps  (strict mode)
#
# mdbook Guide (docs/ directory):
#   cargo install mdbook              ← install once
#   cd docs && mdbook build           ← generate HTML → docs/book/
#   cd docs && mdbook serve           ← live preview at localhost:3000
#   cd docs && mdbook clean           ← remove generated files
#
# Available mdbook themes:
#   light  — Clean white background (classic)
#   rust   — Warm beige/brown (Rust docs style)
#   coal   — Dark charcoal background
#   navy   — Deep navy blue (default, modern dark)
#   ayu    — Ayu dark, soft golden accents
#
# Theme config: docs/book.toml → [output.html] → default-theme
# ═══════════════════════════════════════════════════════════════