embedded_threadsafe/
lib.rs

1#![no_std]
2#![doc = include_str!("../README.md")]
3
4mod runtime;
5
6pub mod lazy;
7pub mod safecells;
8
9// Re-export the cells
10pub use crate::{
11    lazy::LazyCell,
12    safecells::{interrupt::InterruptCell, local::LocalCell, shared::SharedCell},
13};