[package]
edition = "2024"
rust-version = "1.85"
name = "trie"
version = "0.3.0"
authors = [
"Alexis Beingessner <a.beingessner@gmail.com>",
"Peter Blackson <pioczarn@gmail.com>",
"Andrew Paseltiner <apaseltiner@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A highly general and customizable trie library"
homepage = "https://github.com/contain-rs/trie"
documentation = "https://docs.rs/trie/"
readme = "README.md"
keywords = [
"data-structures",
"trie",
"tree",
"collection",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/contain-rs/trie"
[features]
nightly = []
[lib]
name = "trie"
path = "src/lib.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
[dev-dependencies.rand]
version = "0.10"