aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2024-09-05 11:39:59 +0000
committerGitHub <[email protected]>2024-09-05 11:39:59 +0000
commitb8fa5cdf06f54cda1895b6d5e8d3b436dbce08ac (patch)
tree7a7fb9db35fd9667ecaaeadb05a5d8da6c97585a /embassy-executor
parente0b5d69d57c261df0d1acf0fdb4233665a2520a0 (diff)
parentdb00f3f5ecbf7f9a8acb340556b8fc6b156736fa (diff)
Merge pull request #3312 from 9SMTM6/fix_wasm_linking
Enable critical-section/std on wasm
Diffstat (limited to 'embassy-executor')
-rw-r--r--embassy-executor/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index 5984cc49c..01fa28b88 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -79,7 +79,7 @@ arch-cortex-m = ["_arch", "dep:cortex-m"]
79## RISC-V 32 79## RISC-V 32
80arch-riscv32 = ["_arch"] 80arch-riscv32 = ["_arch"]
81## WASM 81## WASM
82arch-wasm = ["_arch", "dep:wasm-bindgen", "dep:js-sys"] 82arch-wasm = ["_arch", "dep:wasm-bindgen", "dep:js-sys", "critical-section/std"]
83## AVR 83## AVR
84arch-avr = ["_arch", "dep:portable-atomic", "dep:avr-device"] 84arch-avr = ["_arch", "dep:portable-atomic", "dep:avr-device"]
85 85