1[package] 2name = "unicode-bidi" 3version = "0.3.7" 4authors = ["The Servo Project Developers"] 5license = "MIT / Apache-2.0" 6description = "Implementation of the Unicode Bidirectional Algorithm" 7repository = "https://github.com/servo/unicode-bidi" 8documentation = "https://docs.rs/unicode-bidi/" 9keywords = ["rtl", "unicode", "text", "layout", "bidi"] 10readme="README.md" 11edition = "2018" 12categories = [ 13 "no-std", 14 "encoding", 15 "text-processing", 16] 17 18# No data is shipped; benches, examples and tests also depend on data. 19exclude = [ 20 "benches/**", 21 "data/**", 22 "examples/**", 23 "tests/**", 24 "tools/**", 25] 26 27[badges] 28travis-ci = { repository = "servo/unicode-bidi" } 29appveyor = { repository = "servo/unicode-bidi" } 30 31[lib] 32name = "unicode_bidi" 33 34[dependencies] 35flame = { version = "0.2", optional = true } 36flamer = { version = "0.4", optional = true } 37serde = { version = ">=0.8, <2.0", default-features = false, optional = true, features = ["derive"] } 38 39[dev-dependencies] 40serde_test = ">=0.8, <2.0" 41 42[features] 43# Note: We don't actually use the `std` feature for anything other than making 44# doctests work. But it may come in handy in the future. 45default = ["std"] 46std = [] 47unstable = [] # travis-cargo needs it 48bench_it = [] 49flame_it = ["flame", "flamer"] 50with_serde = ["serde"] # DEPRECATED, please use `serde` feature, instead. 51