aboutsummaryrefslogtreecommitdiff
path: root/examples/wasm
diff options
context:
space:
mode:
Diffstat (limited to 'examples/wasm')
-rw-r--r--examples/wasm/Cargo.toml2
-rw-r--r--examples/wasm/README.md2
2 files changed, 2 insertions, 2 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"] }
diff --git a/examples/wasm/README.md b/examples/wasm/README.md
index 4bed4a797..b7fee2dc8 100644
--- a/examples/wasm/README.md
+++ b/examples/wasm/README.md
@@ -3,7 +3,7 @@
3Examples use a CLI tool named `wasm-pack` to build this example: 3Examples use a CLI tool named `wasm-pack` to build this example:
4 4
5``` 5```
6cargo install wasm-pack 6cargo install wasm-pack --version 0.9.1
7``` 7```
8 8
9## Building 9## Building