1[package] 2name = "thread_local" 3version = "1.1.7" 4authors = ["Amanieu d'Antras <amanieu@gmail.com>"] 5description = "Per-object thread-local storage" 6documentation = "https://docs.rs/thread_local/" 7license = "MIT OR Apache-2.0" 8repository = "https://github.com/Amanieu/thread_local-rs" 9readme = "README.md" 10keywords = ["thread_local", "concurrent", "thread"] 11edition = "2021" 12 13[features] 14# this feature provides performance improvements using nightly features 15nightly = [] 16 17[badges] 18travis-ci = { repository = "Amanieu/thread_local-rs" } 19 20[dependencies] 21once_cell = "1.5.2" 22# this is required to gate `nightly` related code paths 23cfg-if = "1.0.0" 24 25[dev-dependencies] 26criterion = "0.4.0" 27 28[[bench]] 29name = "thread_local" 30harness = false 31