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.
56#![no_std]
7#![allow(async_fn_in_trait)]
89pub mod nor_flash;