Dániel Buga 69776eb638
Even more cargo-batch, encode configs in Cargo.toml (#4134)
* Abstract out LP-core targeting packages

* Encode targets_lp_core in Cargo.toml

* Encode architecture compatibility in Cargo.toml

* Move semver_checked into Cargo.toml

* Cache parsed tomls

* Parse simple feature sets from Cargo.toml

* Move all basic feature rules to Cargo.toml

* Add check configs

* Limit command length on Windows

* Update cargo.rs

* Add clippy configs

* Use a single syntax, use a single doc-config line

* Fix known problems

* Run cargo check in CI command

* Fix more problems

* Fix esp-storage
2025-09-18 16:15:35 +00:00

23 lines
757 B
TOML

[package]
name = "xtensa-lx-rt-proc-macros"
version = "0.4.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"]
[package.metadata.espressif]
requires_target = ["xtensa-esp32-none-elf", "xtensa-esp32s2-none-elf", "xtensa-esp32s3-none-elf"]
[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"] }