aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2021-02-19 16:57:56 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-02-19 16:57:56 +0000
commit1ca7eb5dcf625eed3a0b9155d452d883ec1b2961 (patch)
treed44255fadd7cd31117a35a02485877a5a63ceb6f /Cargo.toml.orig
parent837ec149f3a99cbaefe9383e12d41933eb32115b (diff)
parenteff59296dc13cd26b128c32a48b138e6af2fa44b (diff)
downloadthread_local-1ca7eb5dcf625eed3a0b9155d452d883ec1b2961.tar.gz
Upgrade rust/crates/thread_local to 1.1.3 am: c37c85bc7a am: eff59296dc
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/thread_local/+/1581973 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I7f8e2043728acb4b028e553893f90e7b1aaad0d5
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig7
1 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index d81a344..a56288f 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,19 +1,20 @@
[package]
name = "thread_local"
-version = "1.1.0"
+version = "1.1.3"
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"
+documentation = "https://docs.rs/thread_local/"
license = "Apache-2.0/MIT"
repository = "https://github.com/Amanieu/thread_local-rs"
readme = "README.md"
keywords = ["thread_local", "concurrent", "thread"]
+edition = "2018"
[badges]
travis-ci = { repository = "Amanieu/thread_local-rs" }
[dependencies]
-lazy_static = "1.0"
+once_cell = "1.5.2"
# This is actually a dev-dependency, see https://github.com/rust-lang/cargo/issues/1596
criterion = { version = "0.3.3", optional = true }