os-thread-local 0.1.0

OS-backed thread-local storage This library provides a [`ThreadLocal`] type which provides an alternative to `std::thread_local!` that always uses the thread-local storage primitives provided by the OS. Unlike `std::thread_local!`, [`ThreadLocal`] allows per-object thread-local storage, while providing a similar API.
Documentation
[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 library provides a [`ThreadLocal`] type which provides an alternative\nto `std::thread_local!` that always uses the thread-local storage\nprimitives provided by the OS.\n\nUnlike `std::thread_local!`, [`ThreadLocal`] allows per-object thread-local\nstorage, while providing a similar API.\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.0"
[target."cfg(not(windows))".dependencies.libc]
default-features = false
version = "0.2"
[target."cfg(windows)".dependencies.winapi]
features = ["fibersapi"]
version = "0.3"