forked from dtolnay/unicode-ident
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
34 lines (29 loc) · 1.03 KB
/
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-id-start"
version = "1.3.1"
authors = ["David Tolnay <[email protected]>", "Boshen <[email protected]>"]
categories = ["development-tools::procedural-macro-helpers", "no-std", "no-std::no-alloc"]
description = "Determine whether characters have the ID_Start or ID_Continue properties according to Unicode Standard Annex #31"
documentation = "https://docs.rs/unicode-id-start"
edition = "2018"
keywords = ["unicode", "id"]
license = "(MIT OR Apache-2.0) AND Unicode-3.0"
repository = "https://github.com/Boshen/unicode-id-start"
rust-version = "1.31"
[dev-dependencies]
criterion = { version = "0.5", default-features = false }
fst = "0.4"
rand = { version = "0.8", features = ["small_rng"] }
roaring = "0.10"
ucd-trie = { version = "0.1", default-features = false }
unicode-id = "0.3.5"
[[bench]]
name = "id"
harness = false
[workspace]
members = ["diagram", "generate"]
[lib]
doc-scrape-examples = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]