unicode-casefold 0.2.0

Unicode-aware case folding.
Documentation
  • Coverage
  • 41.67%
    5 out of 12 items documented2 out of 6 items with examples
  • Size
  • Source code size: 56.95 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.88 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • lambda-fairy/unicode-casefold
    2 1 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • lambda-fairy

unicode-casefold

Iterators for case folding text. Provides "simple" and "full" algorithms, with Turkic language options on both.

See this W3C article for how case folding differs from .to_lowercase().

Updating the Unicode data tables

The tables used by this library are generated from official Unicode Consortium data. To update them, run the following commands:

curl -O http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
python3 scripts/generate.py < CaseFolding.txt > src/tables.rs
rm CaseFolding.txt

Then check in any changes.