9 releases (breaking)

0.9.0 Mar 3, 2019
0.8.0 Jan 2, 2019
0.7.0 Feb 7, 2018
0.6.0 Sep 22, 2017
0.1.2 Jun 20, 2017

#380 in Internationalization (i18n)

Download history 1765/week @ 2024-07-22 1985/week @ 2024-07-29 1950/week @ 2024-08-05 2151/week @ 2024-08-12 2005/week @ 2024-08-19 1836/week @ 2024-08-26 1795/week @ 2024-09-02 2309/week @ 2024-09-09 1425/week @ 2024-09-16 1729/week @ 2024-09-23 1042/week @ 2024-09-30 1342/week @ 2024-10-07 2079/week @ 2024-10-14 1917/week @ 2024-10-21 1785/week @ 2024-10-28 2127/week @ 2024-11-04

7,974 downloads per month
Used in 18 crates (6 directly)

MIT/Apache

245KB
952 lines

UNIC — Unicode Normalization Forms

Crates.io Documentation

This UNIC component implements algorithms from Unicode® Standard Annex #15 - Unicode Normalization Forms.

Notes

Initial code for this component is based on unicode-normalization.


lib.rs:

UNIC — Unicode Normalization Forms

A component of unic: Unicode and Internationalization Crates for Rust.

This UNIC component implements algorithms from Unicode Standard Annex #15 - Unicode Normalization Forms.

extern crate unic_normal;

use unic_normal::StrNormalForm;

fn main() {
    let s = "ÅΩ";
    let c = s.nfc().collect::<String>();
    assert_eq!(c, "ÅΩ");
}

Dependencies