* Add the `xtensa-lx` package * Add the `xtensa-lx-rt` and `xtensa-lx-rt-proc-macros` packages * Exclude new packages from workspace, add to `xtask::Package` * rustfmt * clippy
25 lines
616 B
TOML
25 lines
616 B
TOML
[package]
|
|
name = "xtensa-lx-rt-proc-macros"
|
|
authors = [
|
|
"Jorge Aparicio <jorge@japaric.io>",
|
|
"Arjan Mels <arjan@mels.email>",
|
|
"Scott Mabin <scott@mabez.dev>",
|
|
]
|
|
version = "0.2.2"
|
|
edition = "2021"
|
|
rust-version = "1.65"
|
|
description = "Attributes re-exported in `xtensa-lx-rt`"
|
|
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]
|
|
darling = "0.20"
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "2.0", features = ["extra-traits", "full"] }
|