forked from open-i18n/rust-unic
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (37 loc) · 1.73 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
35
36
37
38
39
40
41
[package]
name = "unic-ucd"
version = "0.9.0"
edition = "2018"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"
license = "MIT/Apache-2.0"
description = "UNIC — Unicode Character Database"
keywords = ["text", "unicode", "character-property", "character-database"]
categories = ["internationalization", "text-processing", "parsing", "rendering"]
readme = "README.md"
# No tests/benches that depends on /data/
exclude = []
[dependencies]
unic-ucd-age = { path = "age/", version = "0.9.0" }
unic-ucd-bidi = { path = "bidi/", version = "0.9.0" }
unic-ucd-block = { path = "block/", version = "0.9.0" }
unic-ucd-case = { path = "case/", version = "0.9.0" }
unic-ucd-category = { path = "category/", version = "0.9.0" }
unic-ucd-common = { path = "common/", version = "0.9.0" }
unic-ucd-hangul = { path = "hangul/", version= "0.9.0" }
unic-ucd-ident = { path = "ident/", version = "0.9.0" }
unic-ucd-name = { path = "name/", version = "0.9.0" }
unic-ucd-name_aliases = { path = "name_aliases/", version = "0.9.0" }
unic-ucd-normal = { path = "normal/", version = "0.9.0", features = ["unic-ucd-category"] }
unic-ucd-segment = { path = "segment/", version = "0.9.0" }
unic-ucd-unihan = { path = "unihan/", version = "0.9.0" }
unic-ucd-version = { path = "version/", version = "0.9.0" }
[dev-dependencies]
matches = "0.1"
unic-char-basics = { path = "../char/basics/", version = "0.9.0" }
unic-char-property = { path = "../char/property/", version = "0.9.0" }
unic-char-range = { path = "../char/range/", version = "0.9.0" }
[badges]
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "open-i18n/rust-unic" }
is-it-maintained-open-issues = { repository = "open-i18n/rust-unic" }