esp-hal/esp32c3-hal/Cargo.toml
Björn Quentin 6d94b61268
Shared GPIO Implementation (#3)
* make esp32c3 examples run from flash / flashable
* use gpio3 for blinky
* direct boot in Cargo.toml
* have a shared gpio impl
* use PACs from their original locations again
2022-01-06 07:57:55 -08:00

31 lines
594 B
TOML

[package]
name = "esp32c3-hal"
version = "0.1.0"
edition = "2018"
[dependencies]
bare-metal = "1.0"
embedded-hal = { version = "0.2", features = ["unproven"] }
nb = "1.0"
riscv = "0.7"
void = { version = "1.0", default-features = false }
[dependencies.esp-hal-common]
path = "../esp-hal-common"
features = ["esp32c3"]
[dependencies.riscv-rt]
git = "https://github.com/MabezDev/riscv-rt"
rev = "6b55e4aa3895924e31bcd151f2f0ab840836fa07"
optional = true
[dev-dependencies]
panic-halt = "0.2"
[features]
default = ["rt"]
rt = ["riscv-rt"]
[package.metadata.espflash]
format = "direct-boot"