49 lines
1.0 KiB
TOML
49 lines
1.0 KiB
TOML
[package]
|
|
name = "esp32s2-hal"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Jesse Braham <jesse@beta7.io>",
|
|
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
|
]
|
|
edition = "2021"
|
|
description = "HAL for ESP32-S2 microcontrollers"
|
|
repository = "https://github.com/esp-rs/esp-hal"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
keywords = [
|
|
"embedded",
|
|
"embedded-hal",
|
|
"esp",
|
|
"esp32s2",
|
|
"no-std",
|
|
]
|
|
categories = [
|
|
"embedded",
|
|
"hardware-support",
|
|
"no-std",
|
|
]
|
|
|
|
[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"] } # FIXME
|
|
|
|
[dependencies.esp-hal-common]
|
|
path = "../esp-hal-common"
|
|
features = ["esp32s2"]
|
|
|
|
[dependencies.xtensa-lx-rt] # FIXME
|
|
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"]
|