1[package]
2name = "unicode-properties"
3version = "0.1.1"
4authors = ["Charles Lew <crlf0710@gmail.com>", "Manish Goregaokar <manishsmail@gmail.com>"]
5edition = "2021"
6homepage = "https://github.com/unicode-rs/unicode-properties"
7repository = "https://github.com/unicode-rs/unicode-properties"
8documentation = "https://docs.rs/unicode-properties"
9license = "MIT/Apache-2.0"
10keywords = ["text", "unicode"]
11categories = ["no-std::no-alloc"]
12readme = "README.md"
13description = """
14Query character Unicode properties according to
15UAX #44 and UTR #51.
16"""
17exclude = [ "target/*", "Cargo.lock" ]
18
19[features]
20general-category = []
21emoji = []
22default = ["general-category", "emoji"]
23
24[dependencies]
25