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.toml9
1 files changed, 6 insertions, 3 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index e500833c0..d3e5b241a 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -102,7 +102,7 @@ portable-atomic = { version = "1.5", optional = true }
102cortex-m = { version = "0.7.6", optional = true } 102cortex-m = { version = "0.7.6", optional = true }
103 103
104# arch-cortex-ar dependencies 104# arch-cortex-ar dependencies
105cortex-ar = { version = "0.3", optional = true } 105aarch32-cpu = { version = "0.1", optional = true }
106 106
107# arch-wasm dependencies 107# arch-wasm dependencies
108wasm-bindgen = { version = "0.2.82", optional = true } 108wasm-bindgen = { version = "0.2.82", optional = true }
@@ -130,7 +130,7 @@ nightly = ["embassy-executor-macros/nightly"]
130## Enable defmt logging 130## Enable defmt logging
131defmt = ["dep:defmt"] 131defmt = ["dep:defmt"]
132 132
133## Enable log logging 133## Enable log logging
134log = ["dep:log"] 134log = ["dep:log"]
135 135
136# Enables turbo wakers, which requires patching core. Not surfaced in the docs by default due to 136# Enables turbo wakers, which requires patching core. Not surfaced in the docs by default due to
@@ -145,7 +145,7 @@ arch-std = ["_arch"]
145## Cortex-M 145## Cortex-M
146arch-cortex-m = ["_arch", "dep:cortex-m"] 146arch-cortex-m = ["_arch", "dep:cortex-m"]
147## Cortex-A/R 147## Cortex-A/R
148arch-cortex-ar = ["_arch", "dep:cortex-ar"] 148arch-cortex-ar = ["_arch", "dep:aarch32-cpu", "dep:arm-targets"]
149## RISC-V 32 149## RISC-V 32
150arch-riscv32 = ["_arch"] 150arch-riscv32 = ["_arch"]
151## WASM 151## WASM
@@ -182,3 +182,6 @@ scheduler-priority = []
182## Enable the embassy_time_driver dependency. 182## Enable the embassy_time_driver dependency.
183## This can unlock extra APIs, for example for the `sheduler-deadline` 183## This can unlock extra APIs, for example for the `sheduler-deadline`
184embassy-time-driver = ["dep:embassy-time-driver"] 184embassy-time-driver = ["dep:embassy-time-driver"]
185
186[build-dependencies]
187arm-targets = { version = "0.4", optional = true }