[package]
edition = "2021"
rust-version = "1.85"
name = "blart"
version = "0.5.0"
build = false
exclude = [
"fuzz/",
"scripts/",
"rustfmt.toml",
"examples/example-data/",
".github/",
"benches/data/",
"release.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An implementation of an adaptive radix tree packaged as a BTreeMap replacement"
readme = "README.md"
keywords = [
"tree",
"map",
"collection",
"radix-tree",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/declanvk/blart"
[features]
allocator-api2 = ["dep:allocator-api2"]
default = ["std"]
nightly = []
std = ["zerocopy/std"]
testing = ["std"]
[lib]
name = "blart"
path = "src/lib.rs"
[[example]]
name = "count_words"
path = "examples/count_words.rs"
[[example]]
name = "tree_stats"
path = "examples/tree_stats.rs"
[[example]]
name = "tree_viz"
path = "examples/tree_viz.rs"
required-features = ["std"]
[[test]]
name = "memory_usage_fixed_length_dense"
path = "tests/memory_usage_fixed_length_dense.rs"
required-features = ["std"]
[[test]]
name = "memory_usage_large_prefixes"
path = "tests/memory_usage_large_prefixes.rs"
required-features = ["std"]
[[test]]
name = "memory_usage_skewed"
path = "tests/memory_usage_skewed.rs"
required-features = ["std"]
[[bench]]
name = "criterion"
path = "benches/criterion.rs"
harness = false
[[bench]]
name = "iai_callgrind"
path = "benches/iai_callgrind.rs"
harness = false
[dependencies.allocator-api2]
version = "0.2.20"
optional = true
[dependencies.paste]
version = "1.0.15"
[dependencies.zerocopy]
version = "0.8.26"
[dev-dependencies.argh]
version = "0.1.12"
[dev-dependencies.bumpalo]
version = "3.16.0"
features = ["allocator-api2"]
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.dhat]
version = "0.3.3"
[dev-dependencies.expect-test]
version = "1.5.1"
[dev-dependencies.iai-callgrind]
version = "0.15.1"
[dev-dependencies.mutants]
version = "0.0.3"
[dev-dependencies.rand]
version = "0.9.1"
[dev-dependencies.rand_distr]
version = "0.5.1"
[profile.bench]
debug = 2