[package]
name = "lindera-sqlite"
version = "0.45.0"
edition = "2024"
description = "Lindera tokenizer for SQLite FTS5 extention"
documentation = "https://docs.rs/lindera-sqlite"
homepage = "https://github.com/lindera/lindera-sqlite"
repository = "https://github.com/lindera/lindera-sqlite"
readme = "README.md"
keywords = ["morphological", "analysis", "library", "sqlite"]
categories = ["text-processing"]
license = "AGPL-3.0-only"
[features]
ipadic = ["lindera/ipadic"]
ipadic-neologd = [
"lindera/ipadic-neologd",
]
unidic = ["lindera/unidic"]
ko-dic = ["lindera/ko-dic"]
cc-cedict = ["lindera/cc-cedict"]
cjk = [
"cc-cedict",
"ipadic",
"ko-dic",
]
extension = []
default = ["extension"]
[lib]
name = "lindera_sqlite"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[profile.release]
lto = true
[dependencies]
libc = { version = "0.2.174", "default-features" = false, features = [] }
serde_json = "1.0.142"
unicode-segmentation = "1.12.0"
unicode-normalization = "0.1.24"
lindera = "0.45.0"
[dev-dependencies]
criterion = "0.7.0"
[[bench]]
name = "bench"
harness = false