mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-21 22:32:29 +00:00
1f58e0efd0
* executor-macros: don't parse function bodies. * executor-macros: refactor for better recovery and ide-friendliness on errors. * executor-macros: disallow `impl Trait` in task arguments. Fixes #3420 * Fix example using `impl Trait` in tasks.
26 lines
561 B
TOML
26 lines
561 B
TOML
[package]
|
|
name = "embassy-executor-macros"
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "macros for creating the entry point and tasks for embassy-executor"
|
|
repository = "https://github.com/embassy-rs/embassy"
|
|
documentation = "https://docs.embassy.dev/embassy-executor-macros"
|
|
categories = [
|
|
"embedded",
|
|
"no-std",
|
|
"asynchronous",
|
|
]
|
|
|
|
[dependencies]
|
|
syn = { version = "2.0.15", features = ["full", "visit"] }
|
|
quote = "1.0.9"
|
|
darling = "0.20.1"
|
|
proc-macro2 = "1.0.29"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[features]
|
|
nightly = []
|