2020-10-19 19:15:24 +00:00
|
|
|
[package]
|
|
|
|
name = "embassy-macros"
|
2023-08-25 21:32:00 +00:00
|
|
|
version = "0.2.1"
|
2022-06-18 00:15:48 +00:00
|
|
|
edition = "2021"
|
2022-10-07 10:41:56 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2022-11-22 13:48:42 +00:00
|
|
|
description = "macros for creating the entry point and tasks for embassy-executor"
|
|
|
|
repository = "https://github.com/embassy-rs/embassy"
|
|
|
|
categories = [
|
|
|
|
"embedded",
|
|
|
|
"no-std",
|
|
|
|
"asynchronous",
|
|
|
|
]
|
2020-10-19 19:15:24 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-06-25 20:24:48 +00:00
|
|
|
syn = { version = "2.0.15", features = ["full", "extra-traits"] }
|
2021-09-10 22:10:46 +00:00
|
|
|
quote = "1.0.9"
|
2023-06-25 20:24:48 +00:00
|
|
|
darling = "0.20.1"
|
2021-09-10 22:10:46 +00:00
|
|
|
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
|
|
|
|
2023-11-24 20:37:27 +00:00
|
|
|
[features]
|
|
|
|
nightly = []
|