1
2
3
4
5
6
7
8
9
//! # embedded-storage-async - An async Storage Abstraction Layer for Embedded Systems
//!
//! Storage traits to allow on and off board storage devices to read and write
//! data asynchronously.

#![no_std]
#![allow(async_fn_in_trait)]

pub mod nor_flash;