2020-10-19 19:15:24 +00:00
|
|
|
[package]
|
|
|
|
name = "embassy-macros"
|
|
|
|
version = "0.1.0"
|
2022-06-18 00:15:48 +00:00
|
|
|
edition = "2021"
|
2020-10-19 19:15:24 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-09-10 22:10:46 +00:00
|
|
|
syn = { version = "1.0.76", features = ["full", "extra-traits"] }
|
|
|
|
quote = "1.0.9"
|
|
|
|
darling = "0.13.0"
|
|
|
|
proc-macro2 = "1.0.29"
|
2020-10-19 19:15:24 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
2021-03-27 22:27:39 +00:00
|
|
|
|
|
|
|
[features]
|
2021-04-12 08:41:21 +00:00
|
|
|
std = []
|
2021-09-13 12:35:40 +00:00
|
|
|
wasm = []
|
2022-08-23 12:57:45 +00:00
|
|
|
|
|
|
|
# Enabling this cause interrupt::take! to require embassy-executor
|
|
|
|
rtos-trace-interrupt = []
|