aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig12
1 files changed, 11 insertions, 1 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 83921af..d81a344 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "thread_local"
-version = "1.0.1"
+version = "1.1.0"
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
description = "Per-object thread-local storage"
documentation = "https://amanieu.github.io/thread_local-rs/thread_local/index.html"
@@ -14,3 +14,13 @@ travis-ci = { repository = "Amanieu/thread_local-rs" }
[dependencies]
lazy_static = "1.0"
+
+# This is actually a dev-dependency, see https://github.com/rust-lang/cargo/issues/1596
+criterion = { version = "0.3.3", optional = true }
+
+[dev-dependencies]
+
+[[bench]]
+name = "thread_local"
+required-features = ["criterion"]
+harness = false