esp-hal/xtensa-lx-rt/Cargo.toml
Dániel Buga 2438d03b21
Simplify generated code to save on build time, yeet a few dependencies (#3643)
* Reduce use of iter::chain

* Cache all symbols

* Trim xtensa-lx-rt deps

* Remove unused dep

* Replace chrono with jiff

* Yeet minijinja

* Save a bit on toml_edit

* Disable some default features

* Disable regex log filters

* Reduce xtensa-lx-rt build script

* Remove unnecessary dependencies

* Remove darling

* Update embedded-test

* lol

* Clean up

* Only validate loaded config once

* fmt

* Changelog
2025-06-17 20:35:00 +00:00

31 lines
902 B
TOML

[package]
name = "xtensa-lx-rt"
version = "0.19.0"
edition = "2024"
rust-version = "1.86.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"]
[lib]
bench = false
test = false
[dependencies]
document-features = "0.2.11"
macros = { version = "0.3.0", package = "xtensa-lx-rt-proc-macros", path = "../xtensa-lx-rt-proc-macros" }
r0 = "1.0.0"
xtensa-lx = { version = "0.11.0", path = "../xtensa-lx" }
[build-dependencies]
[features]
## Save and restore float registers for exceptions
float-save-restore = []
[lints.rust]
unexpected_cfgs = "allow"