Skip to content

Commit e0512e5

Browse files
committed
toolchain pin
1 parent ef67fdf commit e0512e5

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ jobs:
2222
uses: actions/checkout@v4
2323

2424
- name: Setup Rust
25-
uses: dtolnay/rust-toolchain@nightly
25+
uses: dtolnay/rust-toolchain@master
2626
with:
27+
toolchain: nightly
2728
components: rust-src
2829
targets: wasm32-unknown-unknown
2930

rust-toolchain.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[toolchain]
2+
channel = "nightly-2025-08-05"
3+
components = ["rust-src"]
4+
targets = ["wasm32-unknown-unknown"]

web/www/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"start": "npm run wasm && vite",
1111
"build": "npm run wasm && vite build",
1212
"preview": "vite preview",
13-
"wasm": "RUSTFLAGS=\"-C target-feature=+simd128,+atomics,+bulk-memory,+mutable-globals -C link-arg=--initial-memory=1073741824 -C link-arg=--max-memory=4294967296\" wasm-pack build --target web ../ -- -Z build-std=panic_abort,std",
13+
"wasm": "RUSTFLAGS='-C target-feature=+simd128,+atomics,+bulk-memory,+mutable-globals -C link-arg=--initial-memory=1073741824 -C link-arg=--max-memory=4294967296' wasm-pack build --target web ../ -- -Z build-std=panic_abort,std",
1414
"wasm:watch": "cd ../.. && cargo watch -w web/src -w libmastermind/src -s 'cd web/www && npm run wasm'"
1515
},
1616
"keywords": [

0 commit comments

Comments
 (0)