esp-hal/xtensa-lx-rt/Cargo.toml
Jesse Braham 5917275108
Version 0.20.0 (#2038)
* Update package dependencies and bump version numbers

* Update `CHANGELOG.md` for each package to be published

* Remember to update `xtensa-lx-rt` too :)

* Add and use TrapFrame::new() in esp-wifi

* Bump `xtensa-lx-rt` by minor instead of patch, as there are breaking changes

---------

Co-authored-by: Dániel Buga <bugadani@gmail.com>
2024-08-29 19:29:33 +00:00

44 lines
1.1 KiB
TOML

[package]
name = "xtensa-lx-rt"
version = "0.17.0"
edition = "2021"
rust-version = "1.65"
description = "Minimal startup/runtime for Xtensa LX CPUs"
repository = "https://github.com/esp-rs/esp-hal"
license = "MIT OR Apache-2.0"
keywords = ["xtensa", "lx", "register", "peripheral"]
categories = ["embedded", "hardware-support", "no-std"]
[package.metadata.docs.rs]
features = ["esp32"]
[dependencies]
bare-metal = "1.0.0"
document-features = "0.2.10"
macros = { version = "0.2.2", package = "xtensa-lx-rt-proc-macros", path = "./procmacros" }
r0 = "1.0.0"
xtensa-lx = "0.9.0"
[build-dependencies]
anyhow = "1.0.86"
enum-as-inner = "0.6.0"
minijinja = "2.2.0"
serde = { version = "1.0.209", features = ["derive"] }
strum = { version = "0.26.3", features = ["derive"] }
toml = "0.8.19"
[features]
## Save and restore float registers for exceptions
float-save-restore = []
#! ### Chip Support Feature Flags
## Target the ESP32
esp32 = []
## Target the ESP32-S2
esp32s2 = []
## Target the ESP32-S3
esp32s3 = []
[lints.rust]
unexpected_cfgs = "allow"