| commit | 837ec149f3a99cbaefe9383e12d41933eb32115b | [log] [tgz] |
|---|---|---|
| author | Bob Badour <bbadour@google.com> | Wed Feb 17 18:48:51 2021 +0000 |
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Feb 17 18:48:51 2021 +0000 |
| tree | f5e880b1fbb71d899364c25f0b42fec864f56bdb | |
| parent | 6c4596cd889a0548041d551c51c24dab4e35a20b [diff] | |
| parent | d1dd6a4c419c34837dfbc1fa226f946987ce3456 [diff] |
[LSC] Add LOCAL_LICENSE_KINDS to external/rust/crates/thread_local am: 13a1f2b08c am: d1dd6a4c41 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/thread_local/+/1587384 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ic6e648182a4f98ca95e1fe96b099d146b0cb0947
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.
Add this to your Cargo.toml:
[dependencies] thread_local = "1.0"
and this to your crate root:
extern crate thread_local;
This crate's minimum supported Rust version (MSRV) is 1.28.0.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.