os-thread-local 0.1.2

OS-backed thread-local storage. This crate provides a `ThreadLocal` type as an alternative to `std::thread_local!` that allows per-object thread-local storage, while providing a similar API. It always uses the thread-local storage primitives provided by the OS.
Documentation
[badges.travis-ci]
repository = "glandium/os-thread-local"
[dev-dependencies.crossbeam-utils]
version = "0.6"

[dev-dependencies.once_cell]
version = "1"

[package]
authors = ["Mike Hommey <mh@glandium.org>"]
description = "OS-backed thread-local storage.\n\nThis crate provides a `ThreadLocal` type as an alternative to\n`std::thread_local!` that allows per-object thread-local storage, while\nproviding a similar API. It always uses the thread-local storage primitives\nprovided by the OS.\n"
edition = "2018"
keywords = ["os"]
license = "Apache-2.0/MIT"
name = "os-thread-local"
readme = "README.md"
repository = "https://github.com/glandium/os-thread-local"
version = "0.1.2"
[target."cfg(not(windows))".dependencies.libc]
default-features = false
version = "0.2"
[target."cfg(windows)".dependencies.winapi]
features = ["fibersapi"]
version = "0.3"