mirror of
https://github.com/openharmony/third_party_rust_unicode-normalization.git
synced 2026-07-18 13:07:58 -04:00
24 lines
766 B
TOML
24 lines
766 B
TOML
[package]
|
|
|
|
name = "unicode-normalization"
|
|
version = "0.1.8"
|
|
authors = ["kwantam <kwantam@gmail.com>"]
|
|
|
|
homepage = "https://github.com/unicode-rs/unicode-normalization"
|
|
repository = "https://github.com/unicode-rs/unicode-normalization"
|
|
documentation = "https://docs.rs/unicode-normalization/"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
keywords = ["text", "unicode", "normalization", "decomposition", "recomposition"]
|
|
readme = "README.md"
|
|
description = """
|
|
This crate provides functions for normalization of
|
|
Unicode strings, including Canonical and Compatible
|
|
Decomposition and Recomposition, as described in
|
|
Unicode Standard Annex #15.
|
|
"""
|
|
|
|
exclude = [ "target/*", "Cargo.lock", "scripts/tmp", "*.txt", "src/normalization_tests.rs", "src/test.rs" ]
|
|
|
|
[dependencies]
|
|
smallvec = "0.6" |