mirror of
https://gitee.com/openharmony/third_party_rust_unicode-ident
synced 2024-11-23 07:29:52 +00:00
34 lines
954 B
TOML
34 lines
954 B
TOML
[package]
|
|
name = "unicode-ident"
|
|
version = "1.0.8"
|
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
|
categories = ["development-tools::procedural-macro-helpers", "no-std"]
|
|
description = "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31"
|
|
documentation = "https://docs.rs/unicode-ident"
|
|
edition = "2018"
|
|
keywords = ["unicode", "xid"]
|
|
license = "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
|
|
repository = "https://github.com/dtolnay/unicode-ident"
|
|
rust-version = "1.31"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.4", 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-xid = "0.2.4"
|
|
|
|
[[bench]]
|
|
name = "xid"
|
|
harness = false
|
|
|
|
[workspace]
|
|
members = ["diagram", "generate"]
|
|
|
|
[lib]
|
|
doc-scrape-examples = false
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|