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