lindera-python 1.4.0

Python binding for Lindera.
Documentation
[package]
name = "lindera-python"
version = "1.4.0"
edition = "2024"
description = "Python binding for Lindera."
documentation = "https://docs.rs/lindera-python"
homepage = "https://github.com/lindera/lindera-python"
repository = "https://github.com/lindera/lindera-python"
readme = "README.md"
keywords = ["morphological", "analysis", "library", "python"]
categories = ["text-processing"]
license = "MIT"

[lib]
name = "lindera"
path = "src/lib.rs"
crate-type = ["cdylib"]

[features]
embedded-ipadic = [
    "lindera/embedded-ipadic",
] # Include Japanese dictionary (IPADIC)
embedded-ipadic-neologd = [
    "lindera/embedded-ipadic-neologd",
] # Include Japanese dictionary (IPADIC NEologd)
embedded-unidic = [
    "lindera/embedded-unidic",
] # Include Japanese dictionary (UniDic)
embedded-ko-dic = [
    "lindera/embedded-ko-dic",
] # Include Korean dictionary (ko-dic)
embedded-cc-cedict = [
    "lindera/embedded-cc-cedict",
] # Include Chinese dictionary (CC-CEDICT)
embedded-cjk = [
    "lindera/embedded-cjk",
] # Include CJK dictionary (CC-CEDICT, IPADIC, ko-dic)
train = ["lindera/train"] # Enable training functionality
default = ["train"] # No directories included

[dependencies]
pyo3 = { version = "0.27.2", features = ["extension-module"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.148"
num_cpus = "1.17.0"

lindera = "1.5.0"