flashmap 0.2.0

A lock-free eventually consistent concurrent hash map.
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 = "2024"
name = "flashmap"
version = "0.2.0"
authors = ["Cassy343"]
build = false
exclude = [
    ".github/*",
    "bench-graphs/*",
    "hooks/*",
    "dev_setup.sh",
    "test.sh",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lock-free eventually consistent concurrent hash map."
readme = "README.md"
keywords = [
    "map",
    "concurrent",
    "hashmap",
]
categories = [
    "concurrency",
    "data-structures",
]
license = "MIT"
repository = "https://github.com/Cassy343/flashmap"

[features]
default = []
loom = ["dep:loom"]
nightly = []

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

[[test]]
name = "functionality"
path = "tests/functionality.rs"

[[test]]
name = "loom"
path = "tests/loom.rs"

[[test]]
name = "miri"
path = "tests/miri.rs"

[[test]]
name = "util"
path = "tests/util.rs"

[dependencies.hashbrown]
version = "0.16.1"
features = [
    "inline-more",
    "raw-entry",
]
default-features = false

[dependencies.loom]
version = "0.7.2"
features = ["checkpoint"]
optional = true

[dependencies.num_cpus]
version = "1"

[dependencies.slab]
version = "0.4.12"

[profile.loomtest]
lto = "fat"
codegen-units = 1
debug = 2
debug-assertions = true
inherits = "release"

[profile.loomtest-fast]
debug = 0
debug-assertions = false
panic = "abort"
inherits = "loomtest"
strip = "symbols"