29 lines
584 B
TOML
29 lines
584 B
TOML
[package]
|
|
name = "esp32-hal"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bare-metal = "1.0"
|
|
embedded-hal = { version = "0.2", features = ["unproven"] }
|
|
nb = "1.0"
|
|
void = { version = "1.0", default-features = false }
|
|
xtensa-lx = { version = "0.4", features = ["lx6"] }
|
|
|
|
[dependencies.esp-hal-common]
|
|
path = "../esp-hal-common"
|
|
features = ["esp32"]
|
|
|
|
[dependencies.xtensa-lx-rt]
|
|
git = "https://github.com/esp-rs/xtensa-lx-rt/"
|
|
branch = "unify-xtensa-asm"
|
|
features = ["lx6"]
|
|
optional = true
|
|
|
|
[dev-dependencies]
|
|
panic-halt = "0.2"
|
|
|
|
[features]
|
|
default = ["rt"]
|
|
rt = ["xtensa-lx-rt"]
|