[LSC] Add LOCAL_LICENSE_KINDS to external/rust/crates/unicode-normalization am: 63fee1d2dc am: 9d5bcb8632

Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/unicode-normalization/+/1588646

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I0099351836bc4cf6cb71776da3c22ecf2c127929
tree: 2989b0f2513ec077e19233acc697804504d18b8e
  1. .github/
  2. benches/
  3. patches/
  4. scripts/
  5. src/
  6. .cargo_vcs_info.json
  7. .gitignore
  8. .travis.yml
  9. Android.bp
  10. Cargo.toml
  11. Cargo.toml.orig
  12. COPYRIGHT
  13. LICENSE-APACHE
  14. LICENSE-MIT
  15. METADATA
  16. MODULE_LICENSE_APACHE2
  17. OWNERS
  18. README.md
  19. TEST_MAPPING
README.md

unicode-normalization

Build Status Docs

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, "ÅΩ");
}

crates.io

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 support

This 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.