[package]
edition = "2018"
rust-version = "1.58.0"
name = "yada"
version = "0.6.0"
authors = ["Takuya Asano <takuya.a@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Yada is a yet another double-array trie library aiming for fast search and compact data representation."
homepage = "https://github.com/takuyaa/yada"
documentation = "https://github.com/takuyaa/yada"
readme = "README.md"
keywords = [
"double-array",
"trie",
"search",
]
categories = [
"algorithms",
"compression",
"data-structures",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/takuyaa/yada"
[lib]
name = "yada"
path = "src/lib.rs"
[[example]]
name = "build_and_search"
path = "examples/build_and_search.rs"
[[example]]
name = "load_from_file"
path = "examples/load_from_file.rs"