Skip to main content

xiaoyong_value/
lib.rs

1//! Primitives for sharing state.
2//!
3//! This crate offers both thread-safe (`sync`) and single-threaded (`unsync`)
4//! implementations. The `unsync` types are optimized for environments where
5//! tasks remain on a single thread.
6
7pub mod sync;
8pub mod unsync;