You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
983 B

[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 = "http://doc.servo.org/unicode_bidi/"
keywords = ["rtl", "unicode", "text", "layout", "bidi"]
# No data is shipped; benches, examples and tests also depend on data.
exclude = [
"benches/**",
"data/**",
"examples/**",
"tests/**",
"tools/**",
]
[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.