commit | 2ed59527988b0ccd9d7243c77d2c4f9f09718a97 | [log] [tgz] |
---|---|---|
author | Haibo Huang <hhb@google.com> | Wed Feb 10 13:23:24 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Feb 10 13:23:24 2021 +0000 |
tree | 98349a2dab1fb773c040f2637727d367111ad8a5 | |
parent | e4952976b67b9e7334cd6214be256ce90745710a [diff] | |
parent | 04f65325de221cebf73edca27fbcb3b44716fcbc [diff] |
Upgrade rust/crates/unicode-normalization to 0.1.17 am: 04f65325de Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/unicode-normalization/+/1582748 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I21f61958e8c6fb339722648498f033838847c60c
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
.