045ae2c29f
Add "rtos-trace-interrupt" feature flag on embassy-macros and enable it for embassy-executor, to ensure that the interrupt::take! macro can be used without depending on embassy-executor.
20 lines
359 B
TOML
20 lines
359 B
TOML
[package]
|
|
name = "embassy-macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
syn = { version = "1.0.76", features = ["full", "extra-traits"] }
|
|
quote = "1.0.9"
|
|
darling = "0.13.0"
|
|
proc-macro2 = "1.0.29"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[features]
|
|
std = []
|
|
wasm = []
|
|
|
|
# Enabling this cause interrupt::take! to require embassy-executor
|
|
rtos-trace-interrupt = []
|