aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-12-09 00:28:14 +0100
committerDániel Buga <[email protected]>2024-12-15 18:49:57 +0100
commit2f2e2c6031a1abaecdac5ed2febe109e647fe6fd (patch)
tree57ecbf9d7c0ab5e9439f12aedeaa58d0156d1605 /embassy-executor/Cargo.toml
parentb268b1795fed58544c166c41842ce0d66328aa3e (diff)
Make `integrated-timers` the default, remove Cargo feature.
Diffstat (limited to 'embassy-executor/Cargo.toml')
-rw-r--r--embassy-executor/Cargo.toml6
1 files changed, 1 insertions, 5 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index 862d25b59..60fe7087a 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -35,7 +35,6 @@ rtos-trace = { version = "0.1.3", optional = true }
35 35
36embassy-executor-macros = { version = "0.6.2", path = "../embassy-executor-macros" } 36embassy-executor-macros = { version = "0.6.2", path = "../embassy-executor-macros" }
37embassy-time-driver = { version = "0.1.0", path = "../embassy-time-driver", optional = true } 37embassy-time-driver = { version = "0.1.0", path = "../embassy-time-driver", optional = true }
38embassy-time-queue-driver = { version = "0.1.0", path = "../embassy-time-queue-driver", optional = true }
39critical-section = "1.1" 38critical-section = "1.1"
40 39
41document-features = "0.2.7" 40document-features = "0.2.7"
@@ -67,9 +66,6 @@ nightly = ["embassy-executor-macros/nightly"]
67# See: https://github.com/embassy-rs/embassy/pull/1263 66# See: https://github.com/embassy-rs/embassy/pull/1263
68turbowakers = [] 67turbowakers = []
69 68
70## Use the executor-integrated `embassy-time` timer queue.
71integrated-timers = ["dep:embassy-time-driver"]
72
73#! ### Architecture 69#! ### Architecture
74_arch = [] # some arch was picked 70_arch = [] # some arch was picked
75## std 71## std
@@ -94,7 +90,7 @@ executor-interrupt = []
94## Enable tracing support (adds some overhead) 90## Enable tracing support (adds some overhead)
95trace = [] 91trace = []
96## Enable support for rtos-trace framework 92## Enable support for rtos-trace framework
97rtos-trace = ["dep:rtos-trace", "trace"] 93rtos-trace = ["dep:rtos-trace", "trace", "dep:embassy-time-driver"]
98 94
99#! ### Task Arena Size 95#! ### Task Arena Size
100#! Sets the [task arena](#task-arena) size. Necessary if you’re not using `nightly`. 96#! Sets the [task arena](#task-arena) size. Necessary if you’re not using `nightly`.