cedarwood 0.4.1

efficiently-updatable double-array trie in Rust (ported from cedar)
Documentation
[package]
name = "cedarwood"
description = "efficiently-updatable double-array trie in Rust (ported from cedar)"
repository = "https://github.com/MnO2/cedarwood"
version = "0.4.1"
license = "BSD-2-Clause"
authors = ["Paul Meng <me@paulme.ng>"]
readme = "README.md"
keywords = ["trie", "cedar", "string", "search", "text"]
categories = ["data-structures", "text-processing"]
edition = "2018"
exclude = ["/benches/**", "/.travis.yml"]

[badges]
travis-ci = { repository = "MnO2/cedarwood" }
codecov = { repository = "MnO2/cedarwood" }

[features]
default = []
reduced-trie = []

[dev-dependencies]
criterion = "0.2"
rand = "0.7"

[[bench]]
name = "cedarwood_benchmark"
harness = false
path = "./benches/cedarwood_benchmark.rs"
required-features = []

[package.metadata.docs.rs]
all-features = true

[dependencies]
smallvec = "0.6"