[package]
name = "lindera-cli"
version = { workspace = true }
edition = { workspace = true }
description = "A morphological analysis CLI."
documentation = "https://docs.rs/lindera-cli"
homepage = { workspace = true }
repository = { workspace = true }
readme = "README.md"
keywords = ["morphological", "analysis", "cli"]
categories = { workspace = true }
license = { workspace = true }
[features]
embed-ipadic = [
"lindera/embed-ipadic",
]
embed-ipadic-neologd = [
"lindera/embed-ipadic-neologd",
]
embed-unidic = [
"lindera/embed-unidic",
]
embed-ko-dic = [
"lindera/embed-ko-dic",
]
embed-cc-cedict = [
"lindera/embed-cc-cedict",
]
embed-cjk = [
"lindera/embed-cjk",
]
embed-cjk2 = [
"lindera/embed-cjk2",
]
embed-cjk3 = [
"lindera/embed-cjk3",
]
compress = ["lindera/compress"]
mmap = ["lindera/mmap"]
train = ["lindera/train"]
default = ["compress", "mmap", "train"]
[dependencies]
anyhow = { workspace = true }
clap = { workspace = true }
num_cpus = { workspace = true }
serde_json = { workspace = true }
lindera = { workspace = true }
[[bin]]
name = "lindera"
path = "src/main.rs"