Skip to content

Commit 0881944

Browse files
committed
Fixed nighly build of wasm-bindgen-futures (rustwasm#3827)
1 parent d59d442 commit 0881944

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
@@ -30,6 +30,9 @@
3030
* Fixed temporary folder detection by `wasm-bindgen-test-runner` on MacOS.
3131
[#3817](https://github.com/rustwasm/wasm-bindgen/pull/3817)
3232

33+
* Fixed nighly build of `wasm-bindgen-futures`.
34+
[#3827](https://github.com/rustwasm/wasm-bindgen/pull/3827)
35+
3336
## [0.2.90](https://github.com/rustwasm/wasm-bindgen/compare/0.2.89...0.2.90)
3437

3538
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)