aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorandroid-build-prod (mdb) <android-build-team-robot@google.com>2021-01-29 07:31:04 +0000
committerandroid-build-prod (mdb) <android-build-team-robot@google.com>2021-01-29 07:31:04 +0000
commit7223064ec7b143c1654cb6184c15bf0e3438c97c (patch)
treeba0351c97d9ed66538c4c26015dd411b0ad9f0be /README.md
parent7f29bd50df4322e3720d51be66b2c3103f787aef (diff)
parent7cd98bbfd7a374a005eda423eeace5539ec0a066 (diff)
downloadthread_local-7223064ec7b143c1654cb6184c15bf0e3438c97c.tar.gz
Snap for 7110675 from 7cd98bbfd7a374a005eda423eeace5539ec0a066 to sdk-releaseplatform-tools-31.0.0
Change-Id: I0591b10bcaaaca281ff3f08fe50fa2078c9b03bb
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/README.md b/README.md
index d00355b..891e168 100644
--- a/README.md
+++ b/README.md
@@ -3,10 +3,10 @@ thread_local
[![Build Status](https://travis-ci.org/Amanieu/thread_local-rs.svg?branch=master)](https://travis-ci.org/Amanieu/thread_local-rs) [![Crates.io](https://img.shields.io/crates/v/thread_local.svg)](https://crates.io/crates/thread_local)
-This library provides the `ThreadLocal` and `CachedThreadLocal` types which
-allow a separate copy of an 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.
+This library provides the `ThreadLocal` type which allow a separate copy of an
+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)
@@ -25,6 +25,10 @@ and this to your crate root:
extern crate thread_local;
```
+## Minimum Rust version
+
+This crate's minimum supported Rust version (MSRV) is 1.28.0.
+
## License
Licensed under either of