aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2021-02-09 18:14:19 -0800
committerIvan Lozano <ivanlozano@google.com>2021-02-19 09:03:26 -0500
commitc37c85bc7a34f7f632aa8776e15c0d1d387b78e2 (patch)
treed44255fadd7cd31117a35a02485877a5a63ceb6f /README.md
parent13a1f2b08cd836ee437963ba4d562b0f3af10713 (diff)
downloadthread_local-c37c85bc7a34f7f632aa8776e15c0d1d387b78e2.tar.gz
Upgrade rust/crates/thread_local to 1.1.3
Test: make Change-Id: I4e23358c5912509a3598e502aa0d92791e71e435
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 3 insertions, 9 deletions
diff --git a/README.md b/README.md
index 891e168..6560356 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ object to be used for each thread. This allows for per-object thread-local
storage, unlike the standard library's `thread_local!` macro which only allows
static thread-local storage.
-[Documentation](https://amanieu.github.io/thread_local-rs/thread_local/index.html)
+[Documentation](https://docs.rs/thread_local/)
## Usage
@@ -16,18 +16,12 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
-thread_local = "1.0"
-```
-
-and this to your crate root:
-
-```rust
-extern crate thread_local;
+thread_local = "1.1"
```
## Minimum Rust version
-This crate's minimum supported Rust version (MSRV) is 1.28.0.
+This crate's minimum supported Rust version (MSRV) is 1.36.0.
## License