[package]
edition = "2021"
rust-version = "1.70"
name = "tentoku"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Japanese text tokenizer with deinflection support"
homepage = "https://github.com/eridgd/tentoku-rs"
documentation = "https://docs.rs/tentoku"
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/eridgd/tentoku-rs"
[lib]
name = "tentoku"
crate-type = [
"lib",
"cdylib",
"staticlib",
]
path = "src/lib.rs"
[[bin]]
name = "tentoku"
path = "src/bin/tentoku.rs"
[[test]]
name = "cross_validate"
path = "tests/cross_validate.rs"
[[bench]]
name = "tokenize"
path = "benches/tokenize.rs"
harness = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.flate2]
version = "1"
[dependencies.quick-xml]
version = "0.37"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.unicode-normalization]
version = "0.1"
[dependencies.ureq]
version = "3"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.tempfile]
version = "3"