[package]
edition = "2024"
name = "arctic-map"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free adaptive radix tree"
readme = "README.md"
keywords = [
"lock-free",
"concurrent",
"radix-tree",
"map",
"index",
]
categories = [
"concurrency",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nwtnni/arctic"
[features]
default = ["smr-seize"]
opt-membarrier = [
"dep:libc",
"seize/fast-barrier",
]
opt-no-dispatch = []
opt-no-expand = []
opt-no-int = []
opt-no-node15-get = []
opt-no-node15-iter = []
opt-no-node15-keys = []
opt-no-node3-iter = []
opt-no-node3-keys = []
opt-no-node47-iter = []
opt-no-node47-keys = []
opt-no-path = []
opt-no-prefix = []
proptest = ["dep:proptest"]
rand = ["dep:rand"]
shuttle = []
smr-epoch = ["dep:crossbeam-epoch"]
smr-hazard = []
smr-seize = ["dep:seize"]
stat = [
"dep:serde",
"dep:base64",
"dep:hdrhistogram",
]
stat-garbage = []
validate = []
[lib]
name = "arctic"
path = "src/lib.rs"
[[test]]
name = "orthogonal"
path = "tests/orthogonal.rs"
[[test]]
name = "random"
path = "tests/random.rs"
[[test]]
name = "regression"
path = "tests/regression.rs"
[[test]]
name = "shuttle"
path = "tests/shuttle.rs"
[[test]]
name = "state_machine"
path = "tests/state_machine.rs"
[[bench]]
name = "sequential"
path = "benches/sequential.rs"
harness = false
[dependencies.base64]
version = "0.22.1"
optional = true
[dependencies.crossbeam-epoch]
version = "0.9.18"
optional = true
[dependencies.fearless_simd]
version = "0.6.0"
[dependencies.hdrhistogram]
version = "7.5.4"
features = ["serialization"]
optional = true
default-features = false
[dependencies.libc]
version = "0.2.176"
optional = true
[dependencies.proptest]
version = "1.9.0"
optional = true
[dependencies.rand]
version = "0.10.1"
optional = true
[dependencies.ribbit]
version = "0.2.1"
features = ["atomic-u128"]
[dependencies.seize]
version = "0.5.1"
optional = true
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
optional = true
[dev-dependencies.criterion]
version = "0.8.2"
default-features = false
[dev-dependencies.mimalloc]
version = "0.1.50"
[dev-dependencies.proptest-state-machine]
version = "0.6.0"
[profile.release]
debug = 2