Files
rk35xx-android14/external/rust/crates/thread_local/Cargo.toml.orig
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

31 lines
735 B
TOML

[package]
name = "thread_local"
version = "1.1.7"
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
description = "Per-object thread-local storage"
documentation = "https://docs.rs/thread_local/"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Amanieu/thread_local-rs"
readme = "README.md"
keywords = ["thread_local", "concurrent", "thread"]
edition = "2021"
[features]
# this feature provides performance improvements using nightly features
nightly = []
[badges]
travis-ci = { repository = "Amanieu/thread_local-rs" }
[dependencies]
once_cell = "1.5.2"
# this is required to gate `nightly` related code paths
cfg-if = "1.0.0"
[dev-dependencies]
criterion = "0.4.0"
[[bench]]
name = "thread_local"
harness = false