diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-12-07 00:43:18 +0100 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2023-12-07 00:48:30 +0100 |
| commit | ac2aec4e7a8e8a4c17c611810d382892398c9eb7 (patch) | |
| tree | 6ac62c9f6d41e53d0f7f6d9737b1c0c206e531b3 /embassy-executor-macros/Cargo.toml | |
| parent | ad2d9040d9f36d2523a22752e98f24c661643cb7 (diff) | |
executor: rename macro crate to embassy-executor-macros, bump it.
Diffstat (limited to 'embassy-executor-macros/Cargo.toml')
| -rw-r--r-- | embassy-executor-macros/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/embassy-executor-macros/Cargo.toml b/embassy-executor-macros/Cargo.toml new file mode 100644 index 000000000..6ea7ddb71 --- /dev/null +++ b/embassy-executor-macros/Cargo.toml | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | [package] | ||
| 2 | name = "embassy-executor-macros" | ||
| 3 | version = "0.4.0" | ||
| 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 | categories = [ | ||
| 9 | "embedded", | ||
| 10 | "no-std", | ||
| 11 | "asynchronous", | ||
| 12 | ] | ||
| 13 | |||
| 14 | [dependencies] | ||
| 15 | syn = { version = "2.0.15", features = ["full", "extra-traits"] } | ||
| 16 | quote = "1.0.9" | ||
| 17 | darling = "0.20.1" | ||
| 18 | proc-macro2 = "1.0.29" | ||
| 19 | |||
| 20 | [lib] | ||
| 21 | proc-macro = true | ||
| 22 | |||
| 23 | [features] | ||
| 24 | nightly = [] \ No newline at end of file | ||
