aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-01-11 22:47:05 +0100
committerDario Nieuwenhuis <[email protected]>2024-01-11 23:01:24 +0100
commitf0606da9adc8032cc92c06c0661b385742459fc8 (patch)
treeccff465740429fa86f3455312ae02eab1170f8d4 /embassy-executor/Cargo.toml
parentb3ab2d91f7ed48e6a377661e7e504cb0ae0091a3 (diff)
time: split queue driver too, don't reexport drivers.
Diffstat (limited to 'embassy-executor/Cargo.toml')
-rw-r--r--embassy-executor/Cargo.toml9
1 files changed, 5 insertions, 4 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index c71452398..da3c9a4fc 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -33,7 +33,8 @@ log = { version = "0.4.14", optional = true }
33rtos-trace = { version = "0.1.2", optional = true } 33rtos-trace = { version = "0.1.2", optional = true }
34 34
35embassy-executor-macros = { version = "0.4.0", path = "../embassy-executor-macros" } 35embassy-executor-macros = { version = "0.4.0", path = "../embassy-executor-macros" }
36embassy-time = { version = "0.2", path = "../embassy-time", optional = true} 36embassy-time-driver = { version = "0.1.0", path = "../embassy-time-driver", optional = true }
37embassy-time-queue-driver = { version = "0.1.0", path = "../embassy-time-queue-driver", optional = true }
37critical-section = "1.1" 38critical-section = "1.1"
38 39
39document-features = "0.2.7" 40document-features = "0.2.7"
@@ -63,8 +64,8 @@ nightly = ["embassy-executor-macros/nightly"]
63# See: https://github.com/embassy-rs/embassy/pull/1263 64# See: https://github.com/embassy-rs/embassy/pull/1263
64turbowakers = [] 65turbowakers = []
65 66
66## Use timers from `embassy-time` 67## Use the executor-integrated `embassy-time` timer queue.
67integrated-timers = ["dep:embassy-time"] 68integrated-timers = ["dep:embassy-time-driver", "dep:embassy-time-queue-driver"]
68 69
69#! ### Architecture 70#! ### Architecture
70_arch = [] # some arch was picked 71_arch = [] # some arch was picked
@@ -177,4 +178,4 @@ task-arena-size-1048576 = []
177 178
178# END AUTOGENERATED CONFIG FEATURES 179# END AUTOGENERATED CONFIG FEATURES
179 180
180#! </details> \ No newline at end of file 181#! </details>