[dependencies.zerocopy]
default-features = false
optional = true
version = "0.8"
[dev-dependencies.zerocopy]
default-features = false
version = "0.8"
[features]
default = ["zerocopy"]
std = []
zerocopy = ["dep:zerocopy"]
[lib]
name = "radix_trees"
path = "src/lib.rs"
[lints.clippy]
undocumented_unsafe_blocks = "warn"
[package]
authors = ["Alex Ambrose"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["no-std", "data-structures", "text-processing"]
description = "Various radix tree (trie) data structures."
documentation = "https://docs.rs/radix_trees"
edition = "2024"
keywords = ["trie", "tree", "patricia", "radix", "prefix"]
license = "Apache-2.0"
name = "radix_trees"
readme = "README.md"
repository = "https://github.com/ajambrose/radix_trees"
rust-version = "1.85"
version = "0.2.0"
[[test]]
name = "all"
path = "tests/all/main.rs"