//! Mitochondria is the powerhouse of the `Cell`.
//!
//! This crate provides additional mutable containers for use cases not
//! covered by the triumvirate of `Cell`, `RefCell` and `UnsafeCell`.
extern crate core as std;
pub use MoveCell;
pub use OnceCell;