[package]
name = "lindera-python"
version = { workspace = true }
edition = { workspace = true }
description = { workspace = true }
documentation = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
readme = "README.md"
keywords = { workspace = true }
categories = { workspace = true }
license = { workspace = true }
[lib]
name = "lindera"
path = "src/lib.rs"
crate-type = ["cdylib"]
[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",
]
train = ["lindera/train"]
default = ["train"]
[dependencies]
pyo3 = { version = "0.28.0", features = [
"extension-module",
"abi3-py310",
"generate-import-lib",
] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
num_cpus = { workspace = true }
lindera = { workspace = true }