commit | e3a8df8ac4c09fca58d49098ebd1992ef8168a3e | [log] [tgz] |
---|---|---|
author | Bob Badour <[email protected]> | Tue Feb 16 22:08:51 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Feb 16 22:08:51 2021 +0000 |
tree | 2989b0f2513ec077e19233acc697804504d18b8e | |
parent | 8e784208a286369c7a48ef074a010b198ae3d850 [diff] | |
parent | a8a208baa39936d38b21b75110b084ae301995c3 [diff] |
[LSC] Add LOCAL_LICENSE_KINDS to external/rust/crates/unicode-normalization am: 63fee1d2dc am: 9d5bcb8632 am: a8a208baa3 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/unicode-normalization/+/1588646 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I4bfb714f01b1ce246ffb5bb7e037fde5b4e389e1
Unicode character composition and decomposition utilities as described in Unicode Standard Annex #15.
This crate requires Rust 1.36+.
extern crate unicode_normalization; use unicode_normalization::char::compose; use unicode_normalization::UnicodeNormalization; fn main() { assert_eq!(compose('A','\u{30a}'), Some('Å')); let s = "ÅΩ"; let c = s.nfc().collect::<String>(); assert_eq!(c, "ÅΩ"); }
You can use this package in your project by adding the following to your Cargo.toml
:
[dependencies] unicode-normalization = "0.1.16"
no_std
+ alloc
supportThis crate is completely no_std
+ alloc
compatible. This can be enabled by disabling the std
feature, i.e. specifying default-features = false
for this crate on your Cargo.toml
.