| 1 | [package] |
| 2 | |
| 3 | name = "unicode-xid" |
| 4 | version = "0.2.6" |
| 5 | authors = ["erick.tryzelaar <erick.tryzelaar@gmail.com>" , |
| 6 | "kwantam <kwantam@gmail.com>" , |
| 7 | "Manish Goregaokar <manishsmail@gmail.com>" |
| 8 | ] |
| 9 | |
| 10 | homepage = "https://github.com/unicode-rs/unicode-xid" |
| 11 | repository = "https://github.com/unicode-rs/unicode-xid" |
| 12 | documentation = "https://unicode-rs.github.io/unicode-xid" |
| 13 | license = "MIT OR Apache-2.0" |
| 14 | keywords = ["text" , "unicode" , "xid" ] |
| 15 | readme = "README.md" |
| 16 | description = "" " |
| 17 | Determine whether characters have the XID_Start |
| 18 | or XID_Continue properties according to |
| 19 | Unicode Standard Annex #31. |
| 20 | " "" |
| 21 | exclude = ["/.github/**" , "/scripts/*" ] |
| 22 | rust-version = "1.17" |
| 23 | |
| 24 | [features] |
| 25 | default = [] |
| 26 | no_std = [] |
| 27 | bench = [] |
| 28 | |
| 29 | [dev-dependencies] |
| 30 | criterion = "0.3" |
| 31 | |
| 32 | [[bench]] |
| 33 | name = "xid" |
| 34 | harness = false |
| 35 | |