forked from eyeplum/rust-unic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 1.45 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
[package]
name = "unic"
version = "0.7.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"
license = "MIT/Apache-2.0"
description = "UNIC: Unicode and Internationalization Crates"
keywords = ["text", "unicode", "internationalization"]
categories = ["internationalization", "text-processing", "parsing", "rendering"]
readme = "README.md"
# No tests/benches that depends on /data/
exclude = []
[features]
default = []
unstable = ["unic-common/unstable"] # Rust nightly features
bench_it = ["unic-bidi/bench_it"]
serde = ["unic-bidi/serde"]
[dependencies]
unic-bidi = { path = "bidi/", version = "0.7.0" }
unic-char = { path = "char/", version = "0.7.0", features = ["std"] }
unic-common = { path = "common/", version = "0.7.0" }
unic-emoji = { path = "emoji/", version = "0.7.0" }
unic-idna = { path = "idna/", version = "0.7.0" }
unic-normal = { path = "normal/", version = "0.7.0" }
unic-segment = { path = "segment/", version = "0.7.0" }
unic-ucd = { path = "ucd/", version = "0.7.0" }
[dev-dependencies]
unic-char-range = { path = "char/range/", version = "0.7.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" }
appveyor = { repository = "open-i18n/rust-unic", branch = "master", service = "github" }
travis-ci = { repository = "open-i18n/rust-unic", branch = "master" }