aboutsummaryrefslogtreecommitdiff
path: root/examples/wasm/Cargo.toml
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2022-08-23 19:55:49 +0200
committerUlf Lilleengen <[email protected]>2022-08-23 20:00:34 +0200
commitbd4ae2e9526cb66c15b7335cfbc803106637c7e1 (patch)
treeab9aaab342dd7a6b32ae0ee2679836ffba9e9638 /examples/wasm/Cargo.toml
parent6530c179b2efffa19fe5d7e336837692e0365af4 (diff)
Enable 'std' feature on critical-section for WASM
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.
Diffstat (limited to 'examples/wasm/Cargo.toml')
-rw-r--r--examples/wasm/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/wasm/Cargo.toml b/examples/wasm/Cargo.toml
index 194e8f4b8..ea61fb921 100644
--- a/examples/wasm/Cargo.toml
+++ b/examples/wasm/Cargo.toml
@@ -15,4 +15,4 @@ wasm-logger = "0.2.0"
15wasm-bindgen = "0.2" 15wasm-bindgen = "0.2"
16web-sys = { version = "0.3", features = ["Document", "Element", "HtmlElement", "Node", "Window" ] } 16web-sys = { version = "0.3", features = ["Document", "Element", "HtmlElement", "Node", "Window" ] }
17log = "0.4.11" 17log = "0.4.11"
18critical-section = "1.1" 18critical-section = { version = "1.1", features = ["std"] }