[package]
edition = "2021"
rust-version = "1.86"
name = "moine"
version = "0.2.2"
build = false
include = [
"Cargo.toml",
"src/**/*.rs",
"../../README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Public Rust API for Lattice Path Edit Distance and language adapters"
homepage = "https://github.com/tagucci/moine"
documentation = "https://docs.rs/moine"
readme = "README.md"
keywords = [
"edit-distance",
"romanization",
"japanese",
"chinese",
"nlp",
]
categories = [
"text-processing",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tagucci/moine"
[features]
cli = ["dep:moine-cli"]
default = ["cli"]
[lib]
name = "moine"
path = "src/lib.rs"
[[bin]]
name = "moine"
path = "src/bin/moine.rs"
doc = false
required-features = ["cli"]
[dependencies.moine-cli]
version = "0.2.2"
optional = true
[dependencies.moine-core]
version = "0.2.2"
[dependencies.moine-ja]
version = "0.2.2"
[dependencies.moine-zh]
version = "0.2.2"
[dependencies.serde_yaml]
version = "0.9"