1 | [package] |
2 | name = "embassy-executor-macros" |
3 | version = "0.6.2" |
4 | edition = "2021" |
5 | license = "MIT OR Apache-2.0" |
6 | description = "macros for creating the entry point and tasks for embassy-executor" |
7 | repository = "https://github.com/embassy-rs/embassy" |
8 | documentation = "https://docs.embassy.dev/embassy-executor-macros" |
9 | categories = [ |
10 | "embedded" , |
11 | "no-std" , |
12 | "asynchronous" , |
13 | ] |
14 | |
15 | [dependencies] |
16 | syn = { version = "2.0.15" , features = ["full" , "visit" ] } |
17 | quote = "1.0.9" |
18 | darling = "0.20.1" |
19 | proc-macro2 = "1.0.29" |
20 | |
21 | [lib] |
22 | proc-macro = true |
23 | |
24 | [features] |
25 | nightly = [] |
26 | |