[package]
edition = "2024"
name = "rustling"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A blazingly fast library for computational linguistics"
documentation = "https://docs.rs/rustling"
readme = "README.md"
keywords = [
"nlp",
"linguistics",
"text-processing",
"word-segmentation",
]
categories = [
"text-processing",
"science",
]
license = "MIT"
repository = "https://github.com/jacksonllee/rustling"
[features]
extension-module = ["pyo3/extension-module"]
[lib]
name = "rustling"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[dependencies.pyo3]
version = "0.25.1"
features = ["abi3-py310"]
[dependencies.rand]
version = "0.9"
[dependencies.rayon]
version = "1.10"
[dependencies.rustc-hash]
version = "2.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"