1[package]
2name = "unicode-ident"
3version = "1.0.18"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5categories = ["development-tools::procedural-macro-helpers", "no-std", "no-std::no-alloc"]
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-3.0"
11repository = "https://github.com/dtolnay/unicode-ident"
12rust-version = "1.31"
13
14[dev-dependencies]
15criterion = { version = "0.5", default-features = false }
16fst = "0.4"
17rand = "0.9"
18roaring = "0.10"
19ucd-trie = { version = "0.1", default-features = false }
20unicode-xid = "0.2.6"
21
22[[bench]]
23name = "xid"
24harness = false
25
26[workspace]
27members = ["diagram", "generate"]
28
29[package.metadata.docs.rs]
30targets = ["x86_64-unknown-linux-gnu"]
31rustdoc-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