concurrent_avl_tree 0.1.0

Lock-free readable AVL tree with epoch-based reclamation and background batch rebalancing.
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"
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"]