simd-normalizer 0.1.1

SIMD-accelerated Unicode normalization (NFC, NFD, NFKC, NFKD)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.91"
name = "simd-normalizer"
version = "0.1.1"
build = false
exclude = [
    "/3rdparty/",
    "/.github/",
    "/.worktrees/",
    "/.claude/",
    "/benches/",
    "/docs/",
    "/fuzz/",
    "/scripts/",
    "/test-data/",
    "/tests/data/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SIMD-accelerated Unicode normalization (NFC, NFD, NFKC, NFKD)"
documentation = "https://docs.rs/simd-normalizer"
readme = "README.md"
keywords = [
    "unicode",
    "normalization",
    "simd",
    "nfc",
    "nfd",
]
categories = [
    "text-processing",
    "no-std",
]
license = "Apache-2.0"
repository = "https://github.com/DevExzh/simd-normalizer"

[features]
alloc = []
default = ["std"]
internal-test-api = []
quick_check_oracle = []
std = ["alloc"]

[lib]
name = "simd_normalizer"
path = "src/lib.rs"

[[example]]
name = "basic_normalization"
path = "examples/basic_normalization.rs"

[[example]]
name = "case_folding"
path = "examples/case_folding.rs"

[[example]]
name = "confusable_detection"
path = "examples/confusable_detection.rs"

[[example]]
name = "normalize_file"
path = "examples/normalize_file.rs"

[[example]]
name = "text_matching"
path = "examples/text_matching.rs"

[[test]]
name = "api"
path = "tests/api.rs"

[[test]]
name = "casefold"
path = "tests/casefold.rs"

[[test]]
name = "ccc_ordering_edge_cases"
path = "tests/ccc_ordering_edge_cases.rs"

[[test]]
name = "composition_exclusions"
path = "tests/composition_exclusions.rs"

[[test]]
name = "conformance"
path = "tests/conformance.rs"

[[test]]
name = "confusable"
path = "tests/confusable.rs"

[[test]]
name = "cross_form_invariants"
path = "tests/cross_form_invariants.rs"

[[test]]
name = "differential"
path = "tests/differential.rs"

[[test]]
name = "differential_icu4x"
path = "tests/differential_icu4x.rs"

[[test]]
name = "dispatch_consistency"
path = "tests/dispatch_consistency.rs"

[[test]]
name = "empty_input_contract"
path = "tests/empty_input_contract.rs"

[[test]]
name = "exhaustive"
path = "tests/exhaustive.rs"

[[test]]
name = "icu4x_edge_cases"
path = "tests/icu4x_edge_cases.rs"

[[test]]
name = "matching"
path = "tests/matching.rs"

[[test]]
name = "matching_edge_cases"
path = "tests/matching_edge_cases.rs"

[[test]]
name = "multilingual"
path = "tests/multilingual.rs"

[[test]]
name = "normalize_to_contract"
path = "tests/normalize_to_contract.rs"

[[test]]
name = "normalizer_tests"
path = "tests/normalizer_tests.rs"

[[test]]
name = "panic_safety_sweeps"
path = "tests/panic_safety_sweeps.rs"

[[test]]
name = "perf_regression"
path = "tests/perf_regression.rs"

[[test]]
name = "properties"
path = "tests/properties.rs"

[[test]]
name = "quick_check_fastpath_equivalence"
path = "tests/quick_check_fastpath_equivalence.rs"

[[test]]
name = "quick_check_safe_bytes"
path = "tests/quick_check_safe_bytes.rs"

[[test]]
name = "script_coverage"
path = "tests/script_coverage.rs"

[[test]]
name = "simd_boundaries"
path = "tests/simd_boundaries.rs"

[[test]]
name = "special_chars"
path = "tests/special_chars.rs"

[[test]]
name = "supplementary_edge_cases"
path = "tests/supplementary_edge_cases.rs"

[[test]]
name = "table_validation"
path = "tests/table_validation.rs"

[[test]]
name = "thread_safety"
path = "tests/thread_safety.rs"

[[test]]
name = "trait_equivalence"
path = "tests/trait_equivalence.rs"

[[test]]
name = "unicode_norm_compat"
path = "tests/unicode_norm_compat.rs"

[[test]]
name = "utf16_matching_edge_cases"
path = "tests/utf16_matching_edge_cases.rs"

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

[dev-dependencies.icu_normalizer]
version = "2.2"

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.simdutf8]
version = "0.1"

[dev-dependencies.unicode-normalization]
version = "0.1"