[package]
name = "simd-normalizer"
version = "0.1.1"
edition = "2024"
rust-version = "1.91"
description = "SIMD-accelerated Unicode normalization (NFC, NFD, NFKC, NFKD)"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/DevExzh/simd-normalizer"
documentation = "https://docs.rs/simd-normalizer"
keywords = ["unicode", "normalization", "simd", "nfc", "nfd"]
categories = ["text-processing", "no-std"]
exclude = [
"/3rdparty/",
"/.github/",
"/.worktrees/",
"/.claude/",
"/benches/",
"/docs/",
"/fuzz/",
"/scripts/",
"/test-data/",
"/tests/data/",
]
autobenches = false
[features]
default = ["std"]
std = ["alloc"]
alloc = []
internal-test-api = []
quick_check_oracle = []
[dev-dependencies]
proptest = "1"
unicode-normalization = "0.1"
icu_normalizer = "2.2"
simdutf8 = "0.1"
criterion = { version = "0.8", features = ["html_reports"] }
simd-normalizer = { path = ".", features = ["internal-test-api"] }
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "movemask"
harness = false
[[bin]]
name = "perf_driver"
path = "benches/perf_driver.rs"
bench = false
test = false
doc = false