1//! # embedded-storage-async - An async Storage Abstraction Layer for Embedded Systems
2//!
3//! Storage traits to allow on and off board storage devices to read and write
4//! data asynchronously.
5
6#![no_std]
7#![allow(async_fn_in_trait)]
8
9pub mod nor_flash;
10