We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 437f240 commit c765247Copy full SHA for c765247
.github/workflows/wasm.yml
@@ -15,8 +15,10 @@ jobs:
15
- uses: actions/checkout@v4
16
17
- name: Prepare cargo tests
18
- run: rustup target add wasm32-unknown-emscripten
+ run: |
19
+ rustup target add wasm32-unknown-emscripten --toolchain=nightly
20
+ rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
21
22
- name: Build for wasm
- run: cargo build --target=wasm32-unknown-emscripten
23
+ run: cargo +nightly build --target=wasm32-unknown-emscripten -Zbuild-std=panic_abort,std
24
0 commit comments