blob: a0da0931317c5919e5364c51887fd74e55d832d9 (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
name = "unicode-properties"
version = "0.1.0"
authors = [
"Charles Lew <crlf0710@gmail.com>",
"Manish Goregaokar <manishsmail@gmail.com>",
]
exclude = [
"target/*",
"Cargo.lock",
]
description = """
Query character Unicode properties according to
UAX #44 and UTR #51.
"""
homepage = "https://github.com/unicode-rs/unicode-properties"
documentation = "https://docs.rs/unicode-properties"
readme = "README.md"
keywords = [
"text",
"unicode",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/unicode-rs/unicode-properties"
[dependencies]
[features]
default = [
"general-category",
"emoji",
]
emoji = []
general-category = []
|