aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2020-12-17 22:24:49 +0100
committerJeff Vander Stoep <jeffv@google.com>2020-12-17 22:24:49 +0100
commita3cae00483a451f9b468f8c963376c7523b9325d (patch)
tree20698858ca49e052dbe56d543d5d26454cafe38e /Cargo.toml.orig
parent7875baa7f0252445ffbd6ea597606d982a3661b4 (diff)
downloadunicode-bidi-a3cae00483a451f9b468f8c963376c7523b9325d.tar.gz
Initial import of unicode-bidi v0.3.4
Test: n/a Change-Id: I9290d949c71d45a96c8a4a155dd7f625e4466521
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig37
1 files changed, 37 insertions, 0 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
new file mode 100644
index 0000000..abfcaac
--- /dev/null
+++ b/Cargo.toml.orig
@@ -0,0 +1,37 @@
+[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.