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.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index 290e67bce..2de36d22d 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -118,6 +118,8 @@ arch-spin = ["_arch"]
118 118
119## Enable the `name` field in task metadata. 119## Enable the `name` field in task metadata.
120metadata-name = ["embassy-executor-macros/metadata-name"] 120metadata-name = ["embassy-executor-macros/metadata-name"]
121## Enable the `deadline` field in task metadata.
122metadata-deadline = []
121 123
122#! ### Executor 124#! ### Executor
123 125
@@ -133,4 +135,4 @@ _any_trace = []
133 135
134## Enable "Earliest Deadline First" Scheduler, using soft-realtime "deadlines" to prioritize 136## Enable "Earliest Deadline First" Scheduler, using soft-realtime "deadlines" to prioritize
135## tasks based on the remaining time before their deadline. Adds some overhead. 137## tasks based on the remaining time before their deadline. Adds some overhead.
136edf-scheduler = ["dep:embassy-time-driver"] 138edf-scheduler = ["dep:embassy-time-driver", "metadata-deadline"]