[package]
edition = "2024"
name = "litsea-cli"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Litsea is an extreamely compact word segmentation and model training tool implemented in Rust."
homepage = "https://github.com/mosuka/litsea/litsea-cli"
documentation = "https://docs.rs/litsea-cli"
readme = "README.md"
keywords = [
"word",
"segmentation",
"training",
"model",
]
categories = ["text-processing"]
license = "MIT"
repository = "https://github.com/mosuka/litsea"
[[bin]]
name = "litsea"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.57"
features = ["derive"]
[dependencies.ctrlc]
version = "3.5.1"
[dependencies.icu_segmenter]
version = "2.1.2"
[dependencies.litsea]
version = "0.4.0"
[dependencies.tokio]
version = "1.49.0"
features = [
"rt-multi-thread",
"macros",
]