esp-hal/esp-storage/Cargo.toml
Björn Quentin 60e4b882ef
Add esp-storage to esp-hal repo (#1627)
* Add esp-storage to esp-hal repo

* Include needed feature to lint esp-storage

* Don't lint esp-wifi for now

* Remove redundant copies of license texts

* Try `git-fetch-with-cli`

* Fix esp-pacs URL

* git-fetch-with-cli, again

* desperately trying
2024-05-27 15:28:05 +00:00

52 lines
1.1 KiB
TOML

[package]
name = "esp-storage"
version = "0.3.0"
edition = "2021"
authors = [
"The ESP-RS team",
"Björn Quentin <bjoern.quentin@mobile-j.de>",
]
description = "Implementation of embedded-storage traits to access unencrypted ESP32 flash"
repository = "https://github.com/esp-rs/esp-storage"
license = "MIT OR Apache-2.0"
keywords = [
"embedded-storage",
"esp",
"no-std",
]
categories = [
"embedded",
"hardware-support",
"no-std",
]
[dependencies]
embedded-storage = "0.3.0"
critical-section = { version = "1.1.1", optional = true }
[build-dependencies]
esp-build = { version = "0.1.0", path = "../esp-build" }
[features]
default = ["critical-section", "storage"]
critical-section = ["dep:critical-section"]
# ReadStorage/Storage traits
storage = []
# ReadNorFlash/NorFlash traits
nor-flash = []
# Bytewise read emulation
bytewise-read = []
esp32c2 = []
esp32c3 = []
esp32c6 = []
esp32h2 = []
esp32 = []
esp32s2 = []
esp32s3 = []
# Enable flash emulation to run tests
emulation = []
# this feature is reserved for very specific use-cases - usually you don't want to use this!
low-level = []