aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-08-23 18:41:34 +0000
committerGitHub <[email protected]>2022-08-23 18:41:34 +0000
commit9947e27ee172302bde54bdeeb291328aa93f6fa0 (patch)
treeab9aaab342dd7a6b32ae0ee2679836ffba9e9638 /embassy-executor
parent6530c179b2efffa19fe5d7e336837692e0365af4 (diff)
parentbd4ae2e9526cb66c15b7335cfbc803106637c7e1 (diff)
Merge #925
925: Enable 'std' feature on critical-section for WASM r=Dirbaio a=lulf This fixes the WASM support which was failing due to missing critical-section implementation. This also upgrades the bindgen dependency and ensures that tooling works. Co-authored-by: Ulf Lilleengen <[email protected]>
Diffstat (limited to 'embassy-executor')
-rw-r--r--embassy-executor/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index 184e770cd..1a611720c 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -47,5 +47,5 @@ cfg-if = "1.0.0"
47static_cell = "1.0" 47static_cell = "1.0"
48 48
49# WASM dependencies 49# WASM dependencies
50wasm-bindgen = { version = "0.2.76", features = ["nightly"], optional = true } 50wasm-bindgen = { version = "0.2.82", optional = true }
51js-sys = { version = "0.3", optional = true } \ No newline at end of file 51js-sys = { version = "0.3", optional = true }