aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-executor/Cargo.toml2
-rw-r--r--embassy-sync/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index 0a2dfaa6a..8d7cf715f 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -76,7 +76,7 @@ arch-cortex-m = ["_arch", "dep:cortex-m"]
76## RISC-V 32 76## RISC-V 32
77arch-riscv32 = ["_arch"] 77arch-riscv32 = ["_arch"]
78## WASM 78## WASM
79arch-wasm = ["_arch", "dep:wasm-bindgen", "dep:js-sys", "critical-section/std"] 79arch-wasm = ["_arch", "dep:wasm-bindgen", "dep:js-sys"]
80## AVR 80## AVR
81arch-avr = ["_arch", "dep:portable-atomic", "dep:avr-device"] 81arch-avr = ["_arch", "dep:portable-atomic", "dep:avr-device"]
82## spin (architecture agnostic; never sleeps) 82## spin (architecture agnostic; never sleeps)
diff --git a/embassy-sync/Cargo.toml b/embassy-sync/Cargo.toml
index 4430f1956..92ee38ed9 100644
--- a/embassy-sync/Cargo.toml
+++ b/embassy-sync/Cargo.toml
@@ -20,7 +20,7 @@ src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-sync/
20target = "thumbv7em-none-eabi" 20target = "thumbv7em-none-eabi"
21 21
22[features] 22[features]
23std = ["critical-section/std"] 23std = []
24turbowakers = [] 24turbowakers = []
25 25
26[dependencies] 26[dependencies]