1[package] 2name = "thread_local" 3version = "1.1.3" 4authors = ["Amanieu d'Antras <amanieu@gmail.com>"] 5description = "Per-object thread-local storage" 6documentation = "https://docs.rs/thread_local/" 7license = "Apache-2.0/MIT" 8repository = "https://github.com/Amanieu/thread_local-rs" 9readme = "README.md" 10keywords = ["thread_local", "concurrent", "thread"] 11edition = "2018" 12 13[badges] 14travis-ci = { repository = "Amanieu/thread_local-rs" } 15 16[dependencies] 17once_cell = "1.5.2" 18 19# This is actually a dev-dependency, see https://github.com/rust-lang/cargo/issues/1596 20criterion = { version = "0.3.3", optional = true } 21 22[dev-dependencies] 23 24[[bench]] 25name = "thread_local" 26required-features = ["criterion"] 27harness = false 28