[[bench]]
harness = false
name = "textprep_bench"
path = "benches/textprep_bench.rs"
[dependencies.aho-corasick]
version = "1.1"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"
[dependencies.unicode-casefold]
optional = true
version = "0.2"
[dependencies.unicode-normalization]
version = "0.1"
[dependencies.unicode-segmentation]
version = "1.10"
[dev-dependencies.criterion]
version = "0.7"
[dev-dependencies.proptest]
version = "1.9"
[dev-dependencies.serde_json]
version = "1.0"
[features]
casefold = ["dep:unicode-casefold"]
default = []
serde = ["dep:serde"]
[lib]
name = "textprep"
path = "src/lib.rs"
[package]
authors = ["Arc"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Text preprocessing primitives: normalization, tokenization, and fast keyword matching."
documentation = "https://docs.rs/textprep"
edition = "2021"
homepage = "https://github.com/arclabs561/textprep"
license = "MIT OR Apache-2.0"
name = "textprep"
readme = false
repository = "https://github.com/arclabs561/textprep"
rust-version = "1.75"
version = "0.1.0"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"