[package]
name = "lindera-cli"
version = "1.3.2"
edition = "2024"
description = "A morphological analysis command line interface."
documentation = "https://docs.rs/lindera-cli"
homepage = "https://github.com/lindera/lindera"
repository = "https://github.com/lindera/lindera"
readme = "README.md"
keywords = ["morphological", "analysis", "cli"]
categories = ["text-processing"]
license = "MIT"
[features]
embedded-ipadic = [
"lindera/embedded-ipadic",
]
embedded-ipadic-neologd = [
"lindera/embedded-ipadic-neologd",
]
embedded-unidic = [
"lindera/embedded-unidic",
]
embedded-ko-dic = [
"lindera/embedded-ko-dic",
]
embedded-cc-cedict = [
"lindera/embedded-cc-cedict",
]
embedded-cjk = [
"lindera/embedded-cjk",
]
embedded-cjk2 = [
"lindera/embedded-cjk2",
]
embedded-cjk3 = [
"lindera/embedded-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"