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
# 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.70.0"
name = "pulse_map"
version = "0.6.3"
authors = ["Deendayal Kumawat <deendayal_kumawat@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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."
homepage = "https://github.com/ddsha441981/pulse_map"
documentation = "https://ddsha441981.github.io/pulse_map/"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ddsha441981/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"

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

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

[[example]]
name = "all_scenarios"
path = "examples/all_scenarios.rs"
required-features = ["std"]

[[example]]
name = "basic"
path = "examples/basic.rs"
required-features = ["std"]

[[example]]
name = "concurrent"
path = "examples/concurrent.rs"
required-features = ["std"]

[[example]]
name = "memory_baseline"
path = "examples/memory_baseline.rs"
required-features = ["std"]

[[example]]
name = "production_suite_test"
path = "examples/production_suite_test.rs"
required-features = ["std"]

[[example]]
name = "quality_and_readheavy"
path = "examples/quality_and_readheavy.rs"
required-features = ["std"]

[[example]]
name = "readratio_isolated"
path = "examples/readratio_isolated.rs"
required-features = ["std"]

[[example]]
name = "real_world_latency_spikes"
path = "examples/real_world_latency_spikes.rs"
required-features = ["std"]

[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false

[dependencies.wyhash]
version = "0.5"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.lru]
version = "0.12"

[dev-dependencies.moka]
version = "0.12"
features = ["sync"]

[dev-dependencies.quick_cache]
version = "0.6"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.rand_distr]
version = "0.4"

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