[package]
edition = "2021"
rust-version = "1.56.1"
name = "crawdad"
version = "0.4.1"
authors = ["Shunsuke Kanda <shnsk.knd@gmail.com>"]
build = false
exclude = [".*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Crawdad: ChaRActer-Wise Double-Array Dictionary"
homepage = "https://github.com/daac-tools/crawdad"
readme = "README.md"
keywords = [
"search",
"text",
"double-array",
"trie",
]
categories = [
"text-processing",
"algorithms",
"data-structures",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/daac-tools/crawdad"
[features]
alloc = []
default = ["alloc"]
[lib]
name = "crawdad"
path = "src/lib.rs"
[dependencies]