Skip to content

Commit 91c821b

Browse files
authored
chore: compilation flag (0xMiden#1354)
1 parent eb9ef9f commit 91c821b

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/publish-web-client-next.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
node-version: '20'
2828
registry-url: 'https://registry.npmjs.org/'
2929

30-
- name: Set up Rust and wasm target
31-
uses: actions-rs/toolchain@v1
32-
with:
33-
toolchain: nightly
34-
profile: minimal
35-
override: true
36-
target: wasm32-unknown-unknown
37-
components: rust-src
30+
- name: Set up Rust and wasm target
31+
uses: actions-rs/toolchain@v1
32+
with:
33+
toolchain: stable
34+
profile: minimal
35+
override: true
36+
target: wasm32-unknown-unknown
37+
components: rust-src
3838

3939
- name: Install & build web-client
4040
run: |

crates/web-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@demox-labs/miden-sdk",
3-
"version": "0.12.0-next.17",
3+
"version": "0.12.0-next.18",
44
"description": "Miden Wasm SDK",
55
"collaborators": [
66
"Miden",

crates/web-client/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const baseCargoArgs = [
1717
"--features",
1818
"testing",
1919
"--config",
20-
`build.rustflags=["-C", "target-feature=+atomics,+bulk-memory,+mutable-globals", "-C", "link-arg=--max-memory=4294967296"]`,
20+
`build.rustflags=["-C", "target-feature=+atomics,+bulk-memory,+mutable-globals", "-C", "link-arg=--max-memory=4294967296", "-C", "panic=abort"]`,
2121
"--no-default-features",
2222
];
2323

0 commit comments

Comments
 (0)