aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/Cargo.toml
diff options
context:
space:
mode:
authorDániel Buga <[email protected]>2023-08-14 08:22:22 +0200
committerDániel Buga <[email protected]>2023-08-14 08:22:22 +0200
commitec6bd27df6101bc5f77fa4eace0e8963970231ad (patch)
treeecbee40838f3300b1419c855d5e8ec3f17e4ef48 /embassy-executor/Cargo.toml
parent6ab0d71d9246cdc65f392212d03d639a51d21098 (diff)
Remove thread-context feature
Diffstat (limited to 'embassy-executor/Cargo.toml')
-rw-r--r--embassy-executor/Cargo.toml7
1 files changed, 2 insertions, 5 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index 182dd6937..ce5e2741f 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -31,11 +31,11 @@ features = ["nightly", "defmt", "pender-callback", "arch-cortex-m", "executor-th
31 31
32# Architecture 32# Architecture
33_arch = [] # some arch was picked 33_arch = [] # some arch was picked
34arch-std = ["_arch", "critical-section/std", "thread-context"] 34arch-std = ["_arch", "critical-section/std"]
35arch-cortex-m = ["_arch", "dep:cortex-m"] 35arch-cortex-m = ["_arch", "dep:cortex-m"]
36arch-xtensa = ["_arch"] 36arch-xtensa = ["_arch"]
37arch-riscv32 = ["_arch"] 37arch-riscv32 = ["_arch"]
38arch-wasm = ["_arch", "dep:wasm-bindgen", "dep:js-sys", "thread-context"] 38arch-wasm = ["_arch", "dep:wasm-bindgen", "dep:js-sys"]
39 39
40# Enable creating a `Pender` from an arbitrary function pointer callback. 40# Enable creating a `Pender` from an arbitrary function pointer callback.
41pender-callback = [] 41pender-callback = []
@@ -45,9 +45,6 @@ executor-thread = []
45# Enable the interrupt-mode executor (available in Cortex-M only) 45# Enable the interrupt-mode executor (available in Cortex-M only)
46executor-interrupt = [] 46executor-interrupt = []
47 47
48# Pass a context to the thread-mode executor.
49thread-context = []
50
51# Enable nightly-only features 48# Enable nightly-only features
52nightly = [] 49nightly = []
53 50