[package] name = "cedarwood" description = "efficiently-updatable double-array trie in Rust (ported from cedar)" repository = "https://github.com/MnO2/cedarwood" version = "0.4.6" license = "BSD-2-Clause" authors = ["Paul Meng "] 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.4.0" rand = "0.8.4" [[bench]] name = "cedarwood_benchmark" harness = false path = "./benches/cedarwood_benchmark.rs" required-features = [] [package.metadata.docs.rs] all-features = true [dependencies] smallvec = { version = "1.6.1", features = ["union"] }