1 | [package] |
2 | name = "unicode-ident" |
3 | version = "1.0.12" |
4 | authors = ["David Tolnay <dtolnay@gmail.com>" ] |
5 | categories = ["development-tools::procedural-macro-helpers" , "no-std" , "no-std::no-alloc" ] |
6 | description = "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31" |
7 | documentation = "https://docs.rs/unicode-ident" |
8 | edition = "2018" |
9 | keywords = ["unicode" , "xid" ] |
10 | license = "(MIT OR Apache-2.0) AND Unicode-DFS-2016" |
11 | repository = "https://github.com/dtolnay/unicode-ident" |
12 | rust-version = "1.31" |
13 | |
14 | [dev-dependencies] |
15 | criterion = { version = "0.5" , default-features = false } |
16 | fst = "0.4" |
17 | rand = { version = "0.8" , features = ["small_rng" ] } |
18 | roaring = "0.10" |
19 | ucd-trie = { version = "0.1" , default-features = false } |
20 | unicode-xid = "0.2.4" |
21 | |
22 | [[bench]] |
23 | name = "xid" |
24 | harness = false |
25 | |
26 | [workspace] |
27 | members = ["diagram" , "generate" ] |
28 | |
29 | [lib] |
30 | doc-scrape-examples = false |
31 | |
32 | [package.metadata.docs.rs] |
33 | targets = ["x86_64-unknown-linux-gnu" ] |
34 | rustdoc-args = ["--generate-link-to-definition" ] |
35 | |