diatomic-waker 0.2.3

An async, lock-free synchronization primitive for task wakeup.
Documentation
pub(crate) mod sync {
    pub(crate) mod atomic {
        #[cfg(not(all(test, diatomic_waker_loom)))]
        pub(crate) use core::sync::atomic::AtomicUsize;
        #[cfg(all(test, diatomic_waker_loom))]
        pub(crate) use loom::sync::atomic::AtomicUsize;
    }
}

#[cfg(all(test, diatomic_waker_loom))]
pub(crate) mod cell {
    pub(crate) use loom::cell::UnsafeCell;
}
#[cfg(not(all(test, diatomic_waker_loom)))]
pub(crate) mod cell {
    #[derive(Debug)]
    pub(crate) struct UnsafeCell<T>(core::cell::UnsafeCell<T>);

    impl<T> UnsafeCell<T> {
        pub(crate) const fn new(data: T) -> UnsafeCell<T> {
            UnsafeCell(core::cell::UnsafeCell::new(data))
        }
        pub(crate) fn with<R>(&self, f: impl FnOnce(*const T) -> R) -> R {
            f(self.0.get())
        }
        pub(crate) fn with_mut<R>(&self, f: impl FnOnce(*mut T) -> R) -> R {
            f(self.0.get())
        }
    }
}