async_ach-spsc 0.2.0

Async Atomic Channel
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![no_std]
#[cfg(feature = "alloc")]
extern crate alloc;

#[cfg(feature = "alloc")]
pub mod heap;
pub mod heapless;

#[cfg(feature = "alloc")]
pub use heap::*;
pub use heapless::*;