4 releases (2 breaking)

0.3.1 Dec 4, 2023
0.3.0 Feb 7, 2022
0.2.0 Sep 15, 2021
0.1.0 May 18, 2021

#26 in Embedded development

Download history 13831/week @ 2023-12-14 10636/week @ 2023-12-21 10979/week @ 2023-12-28 12932/week @ 2024-01-04 11689/week @ 2024-01-11 11975/week @ 2024-01-18 12227/week @ 2024-01-25 9955/week @ 2024-02-01 12063/week @ 2024-02-08 10437/week @ 2024-02-15 11677/week @ 2024-02-22 11876/week @ 2024-02-29 13392/week @ 2024-03-07 10595/week @ 2024-03-14 11178/week @ 2024-03-21 8538/week @ 2024-03-28

45,466 downloads per month
Used in 93 crates (27 directly)

MIT/Apache

19KB
317 lines

embedded-storage

An Embedded Storage Abstraction Layer

This crate defines a set of traits that can be implemented to provide non-volatile storage of different kinds, including but not limited to EEPROM, NOR-flash & NAND-flash, both external and internal.

API reference

How-to: add a new trait

This is the suggested approach to adding a new trait to embedded-storage

Research / Discussion

Ideally, before proposing a new trait, or set of traits, you should check for an existing issue suggesting the need for the trait, as well as any related works / use cases / requirements that are useful to consider in the design of the trait.

These issues will be labeled as discussion in the issue tracker.

Implementation / Demonstration

Proposed traits should then be implemented and demonstrated, either by forking embedded-storage or by creating a new crate with the intent of integrating this into embedded-storage once the traits have stabilized. You may find cargo workspaces and patch useful for the forking approach.

Proposing a trait

Once the trait has been demonstrated a PR should be opened to merge the new trait(s) into embedded-storage. This should include a link to the previous discussion issue.

If there is determined to be more than one alternative then there should be further discussion to try to single out the best option. Once there is consensus this will be merged into the embedded-storage repository.

These issues / PRs will be labeled as proposals in the issue tracker.

Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.50.0 and up. It might compile with older versions but that may change in any new patch release.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps