forked from servo/unicode-bidi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (36 loc) · 1.08 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
42
[package]
name = "unicode-bidi"
version = "0.3.4"
authors = ["The Servo Project Developers"]
license = "MIT / Apache-2.0"
description = "Implementation of the Unicode Bidirectional Algorithm"
repository = "https://github.com/servo/unicode-bidi"
documentation = "https://docs.rs/unicode-bidi/"
keywords = ["rtl", "unicode", "text", "layout", "bidi"]
readme="README.md"
# No data is shipped; benches, examples and tests also depend on data.
exclude = [
"benches/**",
"data/**",
"examples/**",
"tests/**",
"tools/**",
]
[badges]
travis-ci = { repository = "servo/unicode-bidi" }
appveyor = { repository = "servo/unicode-bidi" }
[lib]
name = "unicode_bidi"
[dependencies]
flame = { version = "0.1", optional = true }
flamer = { version = "0.1", optional = true }
matches = "0.1"
serde = { version = ">=0.8, <2.0", optional = true, features = ["derive"] }
[dev-dependencies]
serde_test = ">=0.8, <2.0"
[features]
default = []
unstable = [] # travis-cargo needs it
bench_it = []
flame_it = ["flame", "flamer"]
with_serde = ["serde"] # DEPRECATED, please use `serde` feature, instead.