forked from unicode-rs/unicode-xid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 805 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "unicode-xid"
version = "0.2.6"
authors = ["erick.tryzelaar <[email protected]>",
"kwantam <[email protected]>",
"Manish Goregaokar <[email protected]>"
]
homepage = "https://github.com/unicode-rs/unicode-xid"
repository = "https://github.com/unicode-rs/unicode-xid"
documentation = "https://unicode-rs.github.io/unicode-xid"
license = "MIT OR Apache-2.0"
keywords = ["text", "unicode", "xid"]
readme = "README.md"
description = """
Determine whether characters have the XID_Start
or XID_Continue properties according to
Unicode Standard Annex #31.
"""
exclude = ["/.github/**", "/scripts/*"]
rust-version = "1.17"
[features]
default = []
no_std = []
bench = []
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "xid"
harness = false