[package]
edition = "2021"
name = "underthesea_core"
version = "3.3.2"
authors = ["Vu Anh <anhv.ict91@gmail.com>"]
build = false
exclude = [
"rust-toolchain",
"target/*",
"Cargo.lock",
"benches/*.txt",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Underthesea Core"
homepage = "https://github.com/undertheseanlp/underthesea/tree/main/extensions/underthesea_core"
readme = "README.md"
license = "GPL-3.0"
repository = "https://github.com/undertheseanlp/underthesea/"
[lib]
name = "underthesea_core"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[test]]
name = "crf_tests"
path = "tests/crf_tests.rs"
[[test]]
name = "featurizers"
path = "tests/featurizers.rs"
[[test]]
name = "lr_tests"
path = "tests/lr_tests.rs"
[[test]]
name = "models"
path = "tests/models.rs"
[[bench]]
name = "featurizers"
path = "benches/featurizers.rs"
harness = false
[[bench]]
name = "lab"
path = "benches/lab.rs"
[dependencies.bincode]
version = "1.3"
[dependencies.byteorder]
version = "1.5"
[dependencies.hashbrown]
version = "0.15"
features = ["serde"]
[dependencies.liblbfgs]
version = "0.1"
[dependencies.pyo3]
version = "0.25.1"
features = ["extension-module"]
[dependencies.rand]
version = "0.8"
[dependencies.rayon]
version = "1.5"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.unicode-normalization]
version = "0.1"
[dev-dependencies.criterion]
version = "0.3.5"