We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
wasm-bindgen-futures
1 parent 22f84e3 commit 8a0ae96Copy full SHA for 8a0ae96
CHANGELOG.md
@@ -48,6 +48,9 @@
48
* Fixed using `#[wasm_bindgen(js_name = default)]` with `#[wasm_bindgen(module = ...)]`.
49
[#3823](https://github.com/rustwasm/wasm-bindgen/pull/3823)
50
51
+* Fixed nighly build of `wasm-bindgen-futures`.
52
+ [#3827](https://github.com/rustwasm/wasm-bindgen/pull/3827)
53
+
54
## [0.2.90](https://github.com/rustwasm/wasm-bindgen/compare/0.2.89...0.2.90)
55
56
Released 2024-01-06
crates/futures/src/lib.rs
@@ -30,7 +30,7 @@
30
//! systems and make sure that Rust/JavaScript can work together with
31
//! asynchronous and I/O work.
32
33
-#![cfg_attr(target_feature = "atomics", feature(stdsimd))]
+#![cfg_attr(target_feature = "atomics", feature(stdarch_wasm_atomic_wait))]
34
#![deny(missing_docs)]
35
36
use js_sys::Promise;
0 commit comments