blob: f2e8ff0d8a1a6b16057b3ef3b8ec695ae3af2293 [file] [log] [blame]
Chih-Hung Hsieh55629742020-04-07 14:24:03 -07001[package]
2name = "thread_local"
David LeGaree132f602022-03-02 16:21:17 +00003version = "1.1.4"
Chih-Hung Hsieh55629742020-04-07 14:24:03 -07004authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
5description = "Per-object thread-local storage"
Haibo Huangc37c85b2021-02-09 18:14:19 -08006documentation = "https://docs.rs/thread_local/"
Chih-Hung Hsieh55629742020-04-07 14:24:03 -07007license = "Apache-2.0/MIT"
8repository = "https://github.com/Amanieu/thread_local-rs"
9readme = "README.md"
10keywords = ["thread_local", "concurrent", "thread"]
Haibo Huangc37c85b2021-02-09 18:14:19 -080011edition = "2018"
Chih-Hung Hsieh55629742020-04-07 14:24:03 -070012
13[badges]
14travis-ci = { repository = "Amanieu/thread_local-rs" }
15
16[dependencies]
Haibo Huangc37c85b2021-02-09 18:14:19 -080017once_cell = "1.5.2"
Haibo Huang7cd98bb2021-01-07 18:06:50 -080018
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