Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/publish-web-client-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
node-version: '20'
registry-url: 'https://registry.npmjs.org/'

- name: Set up Rust and wasm target
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true
target: wasm32-unknown-unknown
components: rust-src
- name: Set up Rust and wasm target
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
target: wasm32-unknown-unknown
components: rust-src

- name: Install & build web-client
run: |
Expand Down
2 changes: 1 addition & 1 deletion crates/web-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@demox-labs/miden-sdk",
"version": "0.12.0-next.17",
"version": "0.12.0-next.18",
"description": "Miden Wasm SDK",
"collaborators": [
"Miden",
Expand Down
2 changes: 1 addition & 1 deletion crates/web-client/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const baseCargoArgs = [
"--features",
"testing",
"--config",
`build.rustflags=["-C", "target-feature=+atomics,+bulk-memory,+mutable-globals", "-C", "link-arg=--max-memory=4294967296"]`,
`build.rustflags=["-C", "target-feature=+atomics,+bulk-memory,+mutable-globals", "-C", "link-arg=--max-memory=4294967296", "-C", "panic=abort"]`,
"--no-default-features",
];

Expand Down