-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
36 lines (31 loc) · 1.1 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
[package]
name = "unic-bidi"
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 Bidirectional Algorithm"
keywords = ["text", "unicode", "bidi", "rtl", "layout"]
categories = ["internationalization", "text-processing", "parsing", "rendering"]
readme = "README.md"
# No tests/benches that depends on /data/
exclude = [
"tests/conformance_tests.rs",
"benches/bidi_udhr_benches.rs",
]
[features]
default = []
bench_it = []
[dependencies]
matches = "0.1"
serde = { version = ">=0.8, <2.0", optional = true, features = ["derive"] }
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.9.0" }
[dev-dependencies]
serde_test = ">=0.8, <2.0"
unic-char-property = { path = "../char/property/", version = "0.9.0" }
unic-ucd-version = { path = "../ucd/version/", 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" }