embassy/embassy-executor-macros/Cargo.toml

24 lines
500 B
TOML
Raw Normal View History

[package]
name = "embassy-executor-macros"
version = "0.4.0"
2022-06-18 02:15:48 +02:00
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"
categories = [
"embedded",
"no-std",
"asynchronous",
]
[dependencies]
2023-06-25 22:24:48 +02:00
syn = { version = "2.0.15", features = ["full", "extra-traits"] }
2021-09-11 00:10:46 +02:00
quote = "1.0.9"
2023-06-25 22:24:48 +02:00
darling = "0.20.1"
2021-09-11 00:10:46 +02:00
proc-macro2 = "1.0.29"
[lib]
proc-macro = true
[features]
nightly = []