| 1 | [package] |
| 2 | name = "unicode-ident" |
| 3 | version = "1.0.18" |
| 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-3.0" |
| 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 = "0.9" |
| 18 | roaring = "0.10" |
| 19 | ucd-trie = { version = "0.1" , default-features = false } |
| 20 | unicode-xid = "0.2.6" |
| 21 | |
| 22 | [[bench]] |
| 23 | name = "xid" |
| 24 | harness = false |
| 25 | |
| 26 | [workspace] |
| 27 | members = ["diagram" , "generate" ] |
| 28 | |
| 29 | [package.metadata.docs.rs] |
| 30 | targets = ["x86_64-unknown-linux-gnu" ] |
| 31 | rustdoc-args = [ |
| 32 | "--generate-link-to-definition" , |
| 33 | "--extern-html-root-url=core=https://doc.rust-lang.org" , |
| 34 | "--extern-html-root-url=alloc=https://doc.rust-lang.org" , |
| 35 | "--extern-html-root-url=std=https://doc.rust-lang.org" , |
| 36 | ] |
| 37 | |