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

#382 in Internationalization (i18n)

Download history 1738/week @ 2024-06-10 1493/week @ 2024-06-17 2834/week @ 2024-06-24 1689/week @ 2024-07-01 1654/week @ 2024-07-08 1761/week @ 2024-07-15 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 1593/week @ 2024-09-23

7,225 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