File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ jobs:
103
103
runs-on : ubuntu-latest
104
104
steps :
105
105
- uses : actions/checkout@v3
106
- - run : rustup default nightly-2023-05-08
106
+ - run : rustup default nightly-2024-02-06
107
107
- run : rustup target add wasm32-unknown-unknown
108
108
- run : rustup component add rust-src
109
109
# Note: we only run the browser tests here, because wasm-bindgen doesn't support threading in Node yet.
@@ -283,7 +283,7 @@ jobs:
283
283
runs-on : ubuntu-latest
284
284
steps :
285
285
- uses : actions/checkout@v3
286
- - run : rustup default nightly-2023-05-08
286
+ - run : rustup default nightly-2024-02-06
287
287
- run : rustup target add wasm32-unknown-unknown
288
288
- run : rustup component add rust-src
289
289
- run : |
Original file line number Diff line number Diff line change 30
30
* Fixed temporary folder detection by ` wasm-bindgen-test-runner ` on MacOS.
31
31
[ #3817 ] ( https://github.com/rustwasm/wasm-bindgen/pull/3817 )
32
32
33
+ * Fixed nighly build of ` wasm-bindgen-futures ` .
34
+ [ #3827 ] ( https://github.com/rustwasm/wasm-bindgen/pull/3827 )
35
+
33
36
## [ 0.2.90] ( https://github.com/rustwasm/wasm-bindgen/compare/0.2.89...0.2.90 )
34
37
35
38
Released 2024-01-06
Original file line number Diff line number Diff line change 30
30
//! systems and make sure that Rust/JavaScript can work together with
31
31
//! asynchronous and I/O work.
32
32
33
- #![ cfg_attr( target_feature = "atomics" , feature( stdsimd ) ) ]
33
+ #![ cfg_attr( target_feature = "atomics" , feature( stdarch_wasm_atomic_wait ) ) ]
34
34
#![ deny( missing_docs) ]
35
35
36
36
use js_sys:: Promise ;
You can’t perform that action at this time.
0 commit comments