mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-27 12:20:56 +00:00

* 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
20 lines
629 B
TOML
20 lines
629 B
TOML
[package]
|
|
name = "xtensa-lx-rt-proc-macros"
|
|
version = "0.3.0"
|
|
edition = "2024"
|
|
rust-version = "1.86.0"
|
|
description = "Attributes re-exported in `xtensa-lx-rt`"
|
|
documentation = "https://docs.espressif.com/projects/rust/xtensa-lx-rt-proc-macros/latest/"
|
|
repository = "https://github.com/esp-rs/esp-hal"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["esp32", "xtensa-lx-rt", "runtime", "startup"]
|
|
categories = ["embedded", "no-std"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0.95"
|
|
quote = "1.0"
|
|
syn = { version = "2.0", default-features = false, features = ["full", "parsing", "printing", "proc-macro", "clone-impls"] }
|