{"id":15288268,"url":"https://github.com/esp-rs/esp-storage","last_synced_at":"2025-10-07T03:30:20.132Z","repository":{"id":38405706,"uuid":"496269493","full_name":"esp-rs/esp-storage","owner":"esp-rs","description":"implementation of embedded-storage traits to access unencrypted ESP32 flash","archived":true,"fork":false,"pushed_at":"2024-05-27T16:19:08.000Z","size":57,"stargazers_count":26,"open_issues_count":5,"forks_count":4,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-01-25T12:32:55.421Z","etag":null,"topics":["bare-metal","esp32","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/esp-rs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-05-25T14:37:09.000Z","updated_at":"2024-11-28T20:13:39.000Z","dependencies_parsed_at":"2024-11-15T09:33:27.722Z","dependency_job_id":"e297f0b4-cc47-4503-bc63-973a57bfb4f1","html_url":"https://github.com/esp-rs/esp-storage","commit_stats":{"total_commits":14,"total_committers":2,"mean_commits":7.0,"dds":0.0714285714285714,"last_synced_commit":"0207523e7b96ba27d2e9197c95f1d3247bc84f86"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/esp-rs/esp-storage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esp-rs%2Fesp-storage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esp-rs%2Fesp-storage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esp-rs%2Fesp-storage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esp-rs%2Fesp-storage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/esp-rs","download_url":"https://codeload.github.com/esp-rs/esp-storage/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esp-rs%2Fesp-storage/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278715508,"owners_count":26033296,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bare-metal","esp32","rust"],"created_at":"2024-09-30T15:44:58.317Z","updated_at":"2025-10-07T03:30:19.813Z","avatar_url":"https://github.com/esp-rs.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# esp-storage\n\n---\n## This project has moved! It can now be found in the [esp-rs/esp-hal](https://github.com/esp-rs/esp-hal/tree/main/esp-storage) repository.\n---\n\nThis implements [`embedded-storage`](https://github.com/rust-embedded-community/embedded-storage) traits to access unencrypted ESP32 flash.\n\n## Current support\n\nESP32, ESP32-C2, ESP32-C3, ESP32-C6, ESP32-H2, ESP32-S2 and ESP32-S3 are supported in `esp-storage`\n\n## Examples\n- ESP32:\n  1. Run the example:\n     - `cargo +esp run --release --example demo --features esp32 --target xtensa-esp32-none-elf`\n     - `cargo +esp run --release --example low_level --features \"esp32,low-level\" --target xtensa-esp32-none-elf`\n- ESP32-C2:\n  1. Uncomment the ESP32-C2 section, under `target.riscv32imc-unknown-none-elf.dev-dependencies` of the `Cargo-toml` file.\n  2. Run the example:\n     - `cargo \"+nightly\" run --example demo --features esp32c2 --target riscv32imc-unknown-none-elf`\n     - `cargo \"+nightly\" run --example low_level --features \"esp32c2,low-level\" --target riscv32imc-unknown-none-elf`\n- ESP32-C3:\n  1. Uncomment the ESP32-C3 section, under `target.riscv32imc-unknown-none-elf.dev-dependencies` of the `Cargo-toml` file.\n  2. Run the example:\n     - `cargo \"+nightly\" run --example demo --features esp32c3 --target riscv32imc-unknown-none-elf`\n     - `cargo \"+nightly\" run --example low_level --features \"esp32c3,low-level\" --target riscv32imc-unknown-none-elf`\n- ESP32-C6:\n  1. Uncomment the ESP32-C6 section, under `target.riscv32imac-unknown-none-elf.dev-dependencies` of the `Cargo-toml` file.\n  2. Run the example:\n     - `cargo \"+nightly\" run --example demo --features esp32c6 --target riscv32imac-unknown-none-elf`\n     - `cargo \"+nightly\" run --example low_level --features \"esp32c6,low-level\" --target riscv32imac-unknown-none-elf`\n- ESP32-H2:\n  1. Uncomment the ESP32-H2 section, under `target.riscv32imac-unknown-none-elf.dev-dependencies` of the `Cargo-toml` file.\n  2. Run the example:\n     - `cargo \"+nightly\" run --example demo --features esp32h2 --target riscv32imac-unknown-none-elf`\n     - `cargo \"+nightly\" run --example low_level --features \"esp32h2,low-level\" --target riscv32imac-unknown-none-elf`\n- ESP32-S2:\n  1. Run the example:\n     - `cargo \"+esp\" run --example demo --features esp32s2 --target xtensa-esp32s2-none-elf`\n     - `cargo +esp run --release --example low_level --features \"esp32s2,low-level\" --target xtensa-esp32s2-none-elf`\n- ESP32-S3:\n  1. Run the example:\n     - `cargo \"+esp\" run --example demo --features esp32s3 --target xtensa-esp32s3-none-elf`\n     - `cargo +esp run --release --example low_level --features \"esp32s3,low-level\" --target xtensa-esp32s3-none-elf`\n\n## Important\n\nFor ESP32 it is necessary to build with [optimization level](https://doc.rust-lang.org/cargo/reference/profiles.html#opt-level) 2 or 3.\n\nTo make it work also for `debug` builds add this to your `Cargo.toml`\n\n```toml\n[profile.dev.package.esp-storage]\nopt-level = 3\n```\n\n## License\n\nLicensed under either of\n\n- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or\n  http://www.apache.org/licenses/LICENSE-2.0)\n- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)\n\nat your option.\n\n### Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the\nwork by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any\nadditional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fesp-rs%2Fesp-storage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fesp-rs%2Fesp-storage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fesp-rs%2Fesp-storage/lists"}