blob: d81a34452df72b16213183376bd9970790e94908 [file] [log] [blame]
Chih-Hung Hsieh55629742020-04-07 14:24:03 -07001[package]
2name = "thread_local"
Haibo Huang7cd98bb2021-01-07 18:06:50 -08003version = "1.1.0"
Chih-Hung Hsieh55629742020-04-07 14:24:03 -07004authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
5description = "Per-object thread-local storage"
6documentation = "https://amanieu.github.io/thread_local-rs/thread_local/index.html"
7license = "Apache-2.0/MIT"
8repository = "https://github.com/Amanieu/thread_local-rs"
9readme = "README.md"
10keywords = ["thread_local", "concurrent", "thread"]
11
12[badges]
13travis-ci = { repository = "Amanieu/thread_local-rs" }
14
15[dependencies]
16lazy_static = "1.0"
Haibo Huang7cd98bb2021-01-07 18:06:50 -080017
18# This is actually a dev-dependency, see https://github.com/rust-lang/cargo/issues/1596
19criterion = { version = "0.3.3", optional = true }
20
21[dev-dependencies]
22
23[[bench]]
24name = "thread_local"
25required-features = ["criterion"]
26harness = false