aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-executor/Cargo.toml')
-rw-r--r--embassy-executor/Cargo.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index a36a61885..79680ae74 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -109,6 +109,11 @@ arch-avr = ["_arch", "dep:portable-atomic", "dep:avr-device"]
109## spin (architecture agnostic; never sleeps) 109## spin (architecture agnostic; never sleeps)
110arch-spin = ["_arch"] 110arch-spin = ["_arch"]
111 111
112#! ### Metadata
113
114## Enable the `name` field in task metadata.
115metadata-name = []
116
112#! ### Executor 117#! ### Executor
113 118
114## Enable the thread-mode executor (using WFE/SEV in Cortex-M, WFI in other embedded archs) 119## Enable the thread-mode executor (using WFE/SEV in Cortex-M, WFI in other embedded archs)
@@ -118,7 +123,7 @@ executor-interrupt = []
118## Enable tracing hooks 123## Enable tracing hooks
119trace = ["_any_trace"] 124trace = ["_any_trace"]
120## Enable support for rtos-trace framework 125## Enable support for rtos-trace framework
121rtos-trace = ["dep:rtos-trace", "_any_trace", "dep:embassy-time-driver"] 126rtos-trace = ["_any_trace", "metadata-name", "dep:rtos-trace", "dep:embassy-time-driver"]
122_any_trace = [] 127_any_trace = []
123 128
124#! ### Timer Item Payload Size 129#! ### Timer Item Payload Size