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