This commit is contained in:
Toshit Chawda 2024-10-12 16:58:13 -07:00
parent 4aea00ca99
commit 55f311ac3c
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
2 changed files with 2 additions and 4 deletions

View file

@ -18,9 +18,6 @@ jobs:
node-version: "22"
- name: Setup Rust Toolchain
run: |
rustup toolchain install nightly --profile minimal
rustup component add rust-src
rustup target add wasm32-unknown-unknown
cargo install wasm-bindgen-cli
sudo apt-get update && sudo apt-get install -y binaryen

View file

@ -1,3 +1,4 @@
[toolchain]
channel = "nightly"
targets = [ "wasm32-unknown-unknown" ]
targets = [ "wasm32-unknown-unknown" ]
components = [ "rust-src" ]