Skip to content

Commit 4b6ef26

Browse files
authoredFeb 6, 2024
Fixed nighly build of wasm-bindgen-futures (#3827)
1 parent 22f84e3 commit 4b6ef26

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed
 

‎.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
runs-on: ubuntu-latest
104104
steps:
105105
- uses: actions/checkout@v3
106-
- run: rustup default nightly-2023-05-08
106+
- run: rustup default nightly-2024-02-06
107107
- run: rustup target add wasm32-unknown-unknown
108108
- run: rustup component add rust-src
109109
# Note: we only run the browser tests here, because wasm-bindgen doesn't support threading in Node yet.
@@ -283,7 +283,7 @@ jobs:
283283
runs-on: ubuntu-latest
284284
steps:
285285
- uses: actions/checkout@v3
286-
- run: rustup default nightly-2023-05-08
286+
- run: rustup default nightly-2024-02-06
287287
- run: rustup target add wasm32-unknown-unknown
288288
- run: rustup component add rust-src
289289
- run: |

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@
4848
* Fixed using `#[wasm_bindgen(js_name = default)]` with `#[wasm_bindgen(module = ...)]`.
4949
[#3823](https://github.com/rustwasm/wasm-bindgen/pull/3823)
5050

51+
* Fixed nighly build of `wasm-bindgen-futures`.
52+
[#3827](https://github.com/rustwasm/wasm-bindgen/pull/3827)
53+
5154
## [0.2.90](https://github.com/rustwasm/wasm-bindgen/compare/0.2.89...0.2.90)
5255

5356
Released 2024-01-06

‎crates/futures/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
//! systems and make sure that Rust/JavaScript can work together with
3131
//! asynchronous and I/O work.
3232
33-
#![cfg_attr(target_feature = "atomics", feature(stdsimd))]
33+
#![cfg_attr(target_feature = "atomics", feature(stdarch_wasm_atomic_wait))]
3434
#![deny(missing_docs)]
3535

3636
use js_sys::Promise;

0 commit comments

Comments
 (0)
Please sign in to comment.