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
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
RUST_TOOLCHAIN: nightly-2025-10-23
NODE_VERSION: 20
NPM_VERSION: 11.5.1
WASM_PACK_VERSION: 0.13.1
WASM_PACK_VERSION: 0.14.0
WASM_OPT_VERSION: 0.116.1

jobs:
Expand Down
48 changes: 28 additions & 20 deletions packages/wasm-utxo/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/wasm-utxo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rstest = "0.26.1"
pastey = "0.1"

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
zebra-chain = { version = "3.1", default-features = false }
zebra-chain = { version = "4.0", default-features = false }

[build-dependencies]
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-utxo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"

# Install wasm-pack
RUN cargo install wasm-pack
RUN cargo install wasm-pack --version 0.14.0

# Install clang and binaryen (provides wasm-opt)
RUN apt-get update && apt-get install -y clang binaryen
Expand Down