thread_cell 0.2.2

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.
Documentation
[[bench]]
harness = false
name = "thread_cell_bench"
path = "benches/thread_cell_bench.rs"
required-features = ["tokio"]

[dependencies.crossbeam]
version = "0.8"

[dependencies.tokio]
features = ["sync"]
optional = true
version = "1"

[dev-dependencies.criterion]
features = ["html_reports", "async_tokio"]
version = "0.5"

[dev-dependencies.tokio]
features = ["full"]
version = "1"

[features]
default = []

[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.2.2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]