anchormap 0.2.0

Lock-free concurrent hash map: elements never move after insertion, enabling lock-free reads
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"
name = "anchormap"
version = "0.2.0"
authors = ["Matthieu Crepeau"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free concurrent hash map: elements never move after insertion, enabling lock-free reads"
readme = "README.md"
keywords = [
    "concurrent",
    "lock-free",
    "hashmap",
    "anchormap",
    "no-reorder",
]
categories = [
    "algorithms",
    "data-structures",
    "concurrency",
]
license = "MIT"
repository = "https://github.com/mcrepeau/anchormap"

[features]
serde = ["dep:serde"]

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

[[example]]
name = "concurrent_benchmark"
path = "examples/concurrent_benchmark.rs"

[[example]]
name = "concurrent_usage"
path = "examples/concurrent_usage.rs"

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

[dependencies.ahash]
version = "0.8"

[dependencies.parking_lot]
version = "0.12"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.dashmap]
version = "6"

[dev-dependencies.papaya]
version = "0.2"

[dev-dependencies.serde_json]
version = "1"

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