[package]
edition = "2024"
rust-version = "1.91.1"
name = "concurrent_avl_tree"
version = "0.1.0"
authors = ["Dzulkifli Anwar"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free readable AVL tree with epoch-based reclamation and background batch rebalancing."
documentation = "https://docs.rs/concurrent-avl-tree"
readme = "README.md"
keywords = [
"concurrent",
"avl-tree",
"lock-free",
"epoch-reclamation",
"data-structure",
]
categories = [
"data-structures",
"concurrency",
"algorithms",
]
license = "MIT"
repository = "https://codeberg.org/ios-community/concurrent_avl_tree"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docrs",
]
[lib]
name = "concurrent_avl_tree"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]