1 | [package] |
2 | |
3 | name = "unicode-normalization" |
4 | version = "0.1.23" |
5 | authors = ["kwantam <kwantam@gmail.com>" , "Manish Goregaokar <manishsmail@gmail.com>" ] |
6 | |
7 | homepage = "https://github.com/unicode-rs/unicode-normalization" |
8 | repository = "https://github.com/unicode-rs/unicode-normalization" |
9 | documentation = "https://docs.rs/unicode-normalization/" |
10 | |
11 | license = "MIT/Apache-2.0" |
12 | keywords = ["text" , "unicode" , "normalization" , "decomposition" , "recomposition" ] |
13 | readme = "README.md" |
14 | description = "" " |
15 | This crate provides functions for normalization of |
16 | Unicode strings, including Canonical and Compatible |
17 | Decomposition and Recomposition, as described in |
18 | Unicode Standard Annex #15. |
19 | " "" |
20 | |
21 | edition = "2018" |
22 | |
23 | exclude = [ "target/*" , "Cargo.lock" , "scripts/tmp" , "*.txt" , "tests/*" ] |
24 | |
25 | [dependencies.tinyvec] |
26 | version = "1" |
27 | features = ["alloc" ] |
28 | |
29 | |
30 | [features] |
31 | default = ["std" ] |
32 | std = [] |
33 | |