third_party_rust_unicode-ident/Cargo.toml
2022-09-10 20:18:15 -07:00

32 lines
931 B
TOML

[package]
name = "unicode-ident"
version = "1.0.3"
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"]
license = "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
readme = "README.md"
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"
[[bench]]
name = "xid"
harness = false
[workspace]
members = ["diagram", "generate"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]