diff options
| -rw-r--r-- | embassy-executor/Cargo.toml | 4 | ||||
| -rw-r--r-- | embassy-time/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/wasm/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/wasm/README.md | 2 |
4 files changed, 5 insertions, 5 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" | |||
| 47 | static_cell = "1.0" | 47 | static_cell = "1.0" |
| 48 | 48 | ||
| 49 | # WASM dependencies | 49 | # WASM dependencies |
| 50 | wasm-bindgen = { version = "0.2.76", features = ["nightly"], optional = true } | 50 | wasm-bindgen = { version = "0.2.82", optional = true } |
| 51 | js-sys = { version = "0.3", optional = true } \ No newline at end of file | 51 | js-sys = { version = "0.3", optional = true } |
diff --git a/embassy-time/Cargo.toml b/embassy-time/Cargo.toml index 161c101fe..f0f622aba 100644 --- a/embassy-time/Cargo.toml +++ b/embassy-time/Cargo.toml | |||
| @@ -49,6 +49,6 @@ critical-section = "1.1" | |||
| 49 | cfg-if = "1.0.0" | 49 | cfg-if = "1.0.0" |
| 50 | 50 | ||
| 51 | # WASM dependencies | 51 | # WASM dependencies |
| 52 | wasm-bindgen = { version = "0.2.76", features = ["nightly"], optional = true } | 52 | wasm-bindgen = { version = "0.2.81", optional = true } |
| 53 | js-sys = { version = "0.3", optional = true } | 53 | js-sys = { version = "0.3", optional = true } |
| 54 | wasm-timer = { version = "0.2.5", optional = true } \ No newline at end of file | 54 | wasm-timer = { version = "0.2.5", optional = true } \ No newline at end of file |
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" | |||
| 15 | wasm-bindgen = "0.2" | 15 | wasm-bindgen = "0.2" |
| 16 | web-sys = { version = "0.3", features = ["Document", "Element", "HtmlElement", "Node", "Window" ] } | 16 | web-sys = { version = "0.3", features = ["Document", "Element", "HtmlElement", "Node", "Window" ] } |
| 17 | log = "0.4.11" | 17 | log = "0.4.11" |
| 18 | critical-section = "1.1" | 18 | critical-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 @@ | |||
| 3 | Examples use a CLI tool named `wasm-pack` to build this example: | 3 | Examples use a CLI tool named `wasm-pack` to build this example: |
| 4 | 4 | ||
| 5 | ``` | 5 | ``` |
| 6 | cargo install wasm-pack | 6 | cargo install wasm-pack --version 0.9.1 |
| 7 | ``` | 7 | ``` |
| 8 | 8 | ||
| 9 | ## Building | 9 | ## Building |
