[package]
edition = "2024"
rust-version = "1.87"
name = "wabi_tree"
version = "0.1.1"
authors = ["Chris Reynolds <chris@reynolds.guru>"]
build = false
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Order-statistic B-tree map and set with O(log n) rank operations. Drop-in replacements for BTreeMap/BTreeSet."
documentation = "https://docs.rs/wabi_tree"
readme = "README.md"
keywords = [
"btree",
"order-statistic",
"no-std",
"data-structure",
"rank",
]
categories = [
"data-structures",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ckmjreynolds/wabi_tree"
[lib]
name = "wabi_tree"
path = "src/lib.rs"
[dependencies.smallvec]
version = "=1.15.1"
features = ["const_generics"]
default-features = false
[dependencies.static_assertions]
version = "=1.1.0"
[dev-dependencies.criterion]
version = "=0.8.1"
[dev-dependencies.proptest]
version = "=1.9.0"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage_nightly)"]
[profile.samply]
debug = 2
inherits = "release"