commit | 9d5bcb8632909e81e872f816cb324569e5c8e1d4 | [log] [tgz] |
---|---|---|
author | Bob Badour <bbadour@google.com> | Tue Feb 16 21:06:40 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Feb 16 21:06:40 2021 +0000 |
tree | 2989b0f2513ec077e19233acc697804504d18b8e | |
parent | 2ed59527988b0ccd9d7243c77d2c4f9f09718a97 [diff] | |
parent | 63fee1d2dcab5e1b1555f918e98b31cd4a9d2430 [diff] |
[LSC] Add LOCAL_LICENSE_KINDS to external/rust/crates/unicode-normalization am: 63fee1d2dc Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/unicode-normalization/+/1588646 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I098b1ab1961b5bd7a6ff3158e82b91f39c671c26
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
.