1[package]
2
3name = "unicode-xid"
4version = "0.2.4"
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 = ["/.github/**", "/scripts/*"]
22rust-version = "1.17"
23
24[features]
25default = []
26no_std = []
27bench = []
28
29[dev-dependencies]
30criterion = "0.3"
31
32[[bench]]
33name = "xid"
34harness = false
35