[package]
edition = "2021"
rust-version = "1.75"
name = "mecab-ko"
version = "0.6.0"
authors = ["hephaex <hephaex@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "한국어 형태소 분석기 - MeCab-Ko의 순수 Rust 구현"
homepage = "https://github.com/hephaex/mecab-ko"
documentation = "https://docs.rs/mecab-ko"
readme = "README.md"
keywords = [
"korean",
"morphology",
"nlp",
"tokenizer",
"mecab",
]
categories = [
"text-processing",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hephaex/mecab-ko"
[features]
builder = ["dep:mecab-ko-dict-builder"]
default = []
[lib]
name = "mecab_ko"
path = "src/lib.rs"
[[example]]
name = "cli_analyzer"
path = "examples/cli_analyzer.rs"
[[example]]
name = "keyword_extractor"
path = "examples/keyword_extractor.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "integration_basic"
path = "tests/integration_basic.rs"
[[test]]
name = "integration_dict"
path = "tests/integration_dict.rs"
[[test]]
name = "integration_e2e"
path = "tests/integration_e2e.rs"
[[test]]
name = "integration_golden"
path = "tests/integration_golden.rs"
[[test]]
name = "integration_kiwi"
path = "tests/integration_kiwi.rs"
[[test]]
name = "integration_nori"
path = "tests/integration_nori.rs"
[[test]]
name = "integration_performance"
path = "tests/integration_performance.rs"
[[test]]
name = "integration_user_dict"
path = "tests/integration_user_dict.rs"
[dependencies.mecab-ko-core]
version = "0.6.0"
[dependencies.mecab-ko-dict]
version = "0.6.0"
[dependencies.mecab-ko-dict-builder]
version = "0.6.0"
optional = true
[dependencies.mecab-ko-hangul]
version = "0.6.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.26"
[lints.clippy]
expect_used = "warn"
panic = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"