diff options
| author | Florian Zeitz <florob@babelmonkeys.de> | 2014-07-25 22:31:21 +0200 |
|---|---|---|
| committer | Florian Zeitz <florob@babelmonkeys.de> | 2014-07-28 18:47:38 +0200 |
| commit | 7ece0abe64bf7c5bdd03e4cbecdb914f470eb846 (patch) | |
| tree | 16414e40905ab209c31158f54df8bf41d96b1a1d /src/libunicode/lib.rs | |
| parent | 79e9f14abf50eecb7d3c53f10ad900615bb2d397 (diff) | |
| download | rust-7ece0abe64bf7c5bdd03e4cbecdb914f470eb846.tar.gz rust-7ece0abe64bf7c5bdd03e4cbecdb914f470eb846.zip | |
collections, unicode: Add support for NFC and NFKC
Diffstat (limited to 'src/libunicode/lib.rs')
| -rw-r--r-- | src/libunicode/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libunicode/lib.rs b/src/libunicode/lib.rs index c923799e812..239966cfd47 100644 --- a/src/libunicode/lib.rs +++ b/src/libunicode/lib.rs @@ -35,7 +35,7 @@ extern crate core; // regex module pub use tables::regex; -mod decompose; +mod normalize; mod tables; mod u_char; mod u_str; @@ -61,7 +61,7 @@ pub mod char { pub use core::char::{from_digit, escape_unicode, escape_default}; pub use core::char::{len_utf8_bytes, Char}; - pub use decompose::{decompose_canonical, decompose_compatible}; + pub use normalize::{decompose_canonical, decompose_compatible, compose}; pub use tables::normalization::canonical_combining_class; |
