Skip to content

Commit 8a0ae96

Browse files
committed
Fixed nighly build of wasm-bindgen-futures
1 parent 22f84e3 commit 8a0ae96

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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)