aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig15
1 files changed, 11 insertions, 4 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 650aa3e..912ded6 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "unicode-bidi"
-version = "0.3.5"
+version = "0.3.6"
authors = ["The Servo Project Developers"]
license = "MIT / Apache-2.0"
description = "Implementation of the Unicode Bidirectional Algorithm"
@@ -9,6 +9,11 @@ documentation = "https://docs.rs/unicode-bidi/"
keywords = ["rtl", "unicode", "text", "layout", "bidi"]
readme="README.md"
edition = "2018"
+categories = [
+ "no-std",
+ "encoding",
+ "text-processing",
+]
# No data is shipped; benches, examples and tests also depend on data.
exclude = [
@@ -29,14 +34,16 @@ name = "unicode_bidi"
[dependencies]
flame = { version = "0.2", optional = true }
flamer = { version = "0.4", optional = true }
-matches = "0.1"
-serde = { version = ">=0.8, <2.0", optional = true, features = ["derive"] }
+serde = { version = ">=0.8, <2.0", default-features = false, optional = true, features = ["derive"] }
[dev-dependencies]
serde_test = ">=0.8, <2.0"
[features]
-default = []
+# Note: We don't actually use the `std` feature for anything other than making
+# doctests work. But it may come in handy in the future.
+default = ["std"]
+std = []
unstable = [] # travis-cargo needs it
bench_it = []
flame_it = ["flame", "flamer"]