Skip to content

Commit aaf9bfe

Browse files
committed
Fixing wasm-opt
1 parent 272d815 commit aaf9bfe

File tree

5 files changed

+1
-17
lines changed

5 files changed

+1
-17
lines changed

.github/workflows/staging-website.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,7 @@ jobs:
1818
uses: actions-rs/toolchain@v1
1919
with:
2020
profile: minimal
21-
<<<<<<< HEAD
2221
toolchain: nightly-2025-08-28
23-
=======
24-
toolchain: nightly-2025-08-15
25-
>>>>>>> 3a6e8884 (Upgrading rust version)
2622
override: true
2723
components: rustfmt, rust-src
2824

.github/workflows/test-website.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@ jobs:
1515
uses: actions-rs/toolchain@v1
1616
with:
1717
profile: minimal
18-
<<<<<<< HEAD
1918
toolchain: nightly-2025-08-28
20-
=======
21-
toolchain: nightly-2025-08-15
22-
>>>>>>> 3a6e8884 (Upgrading rust version)
2319
override: true
2420
components: rustfmt, rust-src
2521

.github/workflows/website.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,7 @@ jobs:
1818
uses: actions-rs/toolchain@v1
1919
with:
2020
profile: minimal
21-
<<<<<<< HEAD
2221
toolchain: nightly-2025-08-28
23-
=======
24-
toolchain: nightly-2025-08-15
25-
>>>>>>> 3a6e8884 (Upgrading rust version)
2622
override: true
2723
components: rustfmt, rust-src
2824

rust-toolchain.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
[toolchain]
2-
<<<<<<< HEAD
32
channel = "nightly-2025-08-28"
4-
=======
5-
channel = "nightly-2025-08-15"
6-
>>>>>>> 3a6e8884 (Upgrading rust version)
73
components = [ "rust-std", "rust-src" ]
84
targets = [ "wasm32-unknown-unknown" ]

wasm/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ async function buildWasm(network) {
4040
"--no-default-features",
4141
"--features", `browser,${network}`,
4242
],
43-
wasmOpt: ["-O", "--all-features"],
43+
wasmOpt: ["-O", "--enable-threads", "--enable-bulk-memory", "--enable-bulk-memory-opt"],
4444
},
4545

4646
experimental: {

0 commit comments

Comments
 (0)