[package]
edition = "2021"
name = "text-processing-rs"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Inverse Text Normalization (ITN) — convert spoken-form ASR output to written form"
readme = "README.md"
keywords = [
"asr",
"speech",
"normalization",
"nlp",
"itn",
]
categories = ["text-processing"]
license = "Apache-2.0"
repository = "https://github.com/FluidInference/text-processing-rs"
[features]
default = []
ffi = []
[lib]
name = "text_processing_rs"
crate-type = [
"lib",
"staticlib",
"cdylib",
]
path = "src/lib.rs"
[[test]]
name = "en_tests"
path = "tests/en_tests.rs"
[dependencies.lazy_static]
version = "1"
[dev-dependencies.proptest]
version = "1"