[package]
edition = "2024"
rust-version = "1.85"
name = "traverze"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "traverze"
description = "A utility library and CLI for full-text search built on Tantivy and Lindera."
readme = "README.md"
keywords = [
"full-text-search",
"library",
"cli",
"tantivy",
"lindera",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kyow/traverze"
[features]
default = ["tokenizer-ngram"]
tokenizer-lindera-ipadic = [
"dep:lindera",
"dep:lindera-tantivy",
"lindera-tantivy/embed-ipadic",
]
tokenizer-ngram = []
[lib]
name = "traverze"
path = "src/lib.rs"
[[bin]]
name = "compare_bench"
path = "src/bin/compare_bench.rs"
[[bin]]
name = "traverze"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.lindera]
version = "2.2.0"
optional = true
[dependencies.lindera-tantivy]
version = "2.0.0"
optional = true
default-features = false
[dependencies.tantivy]
version = "0.25.0"