[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"