[package] name = "per-thread-object" version = "0.6.0" authors = ["quininer "] edition = "2018" license = "MIT" description = "Efficient per-object thread-local storage implementation" repository = "https://github.com/quininer/per-thread-object" homepage = "https://github.com/quininer/per-thread-object" documentation = "https://docs.rs/per-thread-object" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] parking_lot = { version = "0.12", optional = true } loom = { version = "0.5", optional = true } cache-padded = "1" once_cell = "1" [dev-dependencies] criterion = "0.4" thread_local = "1" os-thread-local = "0.1" thread-local-object = "0.1" rayon = "1" [[bench]] name = "tls" harness = false