mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-28 04:40:52 +00:00

* Support "build-documentation-index --serve" * Support `/latest` in generated docs * `/latest` vs `/latest/` * Update documentation field
44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[package]
|
|
name = "xtensa-lx-rt"
|
|
version = "0.18.0"
|
|
edition = "2021"
|
|
rust-version = "1.84.0"
|
|
description = "Minimal startup/runtime for Xtensa LX CPUs"
|
|
documentation = "https://docs.espressif.com/projects/rust/xtensa-lx-rt/latest/"
|
|
repository = "https://github.com/esp-rs/esp-hal"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["lx", "peripheral", "register", "xtensa"]
|
|
categories = ["embedded", "hardware-support", "no-std"]
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["esp32"]
|
|
|
|
[dependencies]
|
|
document-features = "0.2.10"
|
|
macros = { version = "0.2.2", package = "xtensa-lx-rt-proc-macros", path = "../xtensa-lx-rt-proc-macros" }
|
|
r0 = "1.0.0"
|
|
xtensa-lx = { version = "0.10.0", path = "../xtensa-lx" }
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0.95"
|
|
enum-as-inner = "0.6.1"
|
|
minijinja = "2.6.0"
|
|
serde = { version = "1.0.217", 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"
|