6 releases (3 breaking)

0.4.0 Sep 26, 2024
0.3.0 Jun 17, 2024
0.2.0 Feb 7, 2024
0.1.2 Jun 7, 2021
0.1.0 Jul 17, 2020

#817 in Text processing

Download history 140437/week @ 2025-11-25 175494/week @ 2025-12-02 165645/week @ 2025-12-09 159479/week @ 2025-12-16 111019/week @ 2025-12-23 129740/week @ 2025-12-30 226269/week @ 2026-01-06 264432/week @ 2026-01-13 281565/week @ 2026-01-20 344506/week @ 2026-01-27 450867/week @ 2026-02-03 463940/week @ 2026-02-10 337268/week @ 2026-02-17 339092/week @ 2026-02-24 401454/week @ 2026-03-03 442287/week @ 2026-03-10

1,578,718 downloads per month
Used in 843 crates (3 directly)

MIT/Apache

18KB
506 lines

unicode-ccc

Crates.io Documentation

This library implements Unicode Canonical Combining Class detection.

use unicode_ccc::*;

assert_eq!(get_canonical_combining_class('A'), CanonicalCombiningClass::NotReordered);
assert_eq!(get_canonical_combining_class('\u{0A3C}'), CanonicalCombiningClass::Nukta);
assert_eq!(get_canonical_combining_class('\u{18A9}'), CanonicalCombiningClass::AboveLeft);

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps