[[bench]]
harness = false
name = "thread_cell_bench"
path = "benches/thread_cell_bench.rs"
[dependencies.crossbeam]
version = "0.8"
[dependencies.tokio]
features = ["full"]
version = "1"
[dev-dependencies.criterion]
features = ["html_reports", "async_tokio"]
version = "0.5"
[lib]
name = "thread_cell"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Safe, Send + Sync access to !Send/!Sync data by isolating it on a dedicated thread and interacting with it through message passing. Perfect for Rc, RefCell, and other single-threaded types."
edition = "2024"
license = "Apache-2.0"
name = "thread_cell"
readme = "README.md"
repository = "https://github.com/mcmah309/thread_cell"
version = "0.1.1"