├── .github └── workflows │ ├── ci.yml │ ├── clippy.yml │ └── rustfmt.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── embedded-storage-async ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src │ ├── lib.rs │ └── nor_flash.rs ├── rustfmt.toml └── src ├── iter.rs ├── lib.rs └── nor_flash.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/clippy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/.github/workflows/clippy.yml -------------------------------------------------------------------------------- /.github/workflows/rustfmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/.github/workflows/rustfmt.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/README.md -------------------------------------------------------------------------------- /embedded-storage-async/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /embedded-storage-async/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/embedded-storage-async/CHANGELOG.md -------------------------------------------------------------------------------- /embedded-storage-async/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/embedded-storage-async/Cargo.toml -------------------------------------------------------------------------------- /embedded-storage-async/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/embedded-storage-async/LICENSE-APACHE -------------------------------------------------------------------------------- /embedded-storage-async/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/embedded-storage-async/LICENSE-MIT -------------------------------------------------------------------------------- /embedded-storage-async/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/embedded-storage-async/README.md -------------------------------------------------------------------------------- /embedded-storage-async/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/embedded-storage-async/src/lib.rs -------------------------------------------------------------------------------- /embedded-storage-async/src/nor_flash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/embedded-storage-async/src/nor_flash.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | hard_tabs = true 2 | 3 | -------------------------------------------------------------------------------- /src/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/src/iter.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/nor_flash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-embedded-community/embedded-storage/HEAD/src/nor_flash.rs --------------------------------------------------------------------------------