1//! Simple crate that adds an `AtomicallySized` trait and an associated trait called
2//! `Atomic<T>` that makes generic containers accross atomic types easier to implement.
34#![no_std]
56mod impls;
7mod traits;
89pub use impls::*;
10pub use traits::*;