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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: deno lint && cargo clippy

- name: Install wasm-bindgen-cli
run: cargo install wasm-bindgen-cli --version 0.2.102 --locked
run: cargo install wasm-bindgen-cli --version 0.2.105 --locked

- name: Check Wasm up-to-date
run: deno task build --check
Expand Down
125 changes: 79 additions & 46 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions lib/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ interface WasmCrate {
}

export const versions = {
"wasm-bindgen": "0.2.102",
"wasm-bindgen-futures": "0.4.52",
"js-sys": "0.3.79",
"web-sys": "0.3.79",
"wasm-bindgen": "0.2.105",
"wasm-bindgen-futures": "0.4.55",
"js-sys": "0.3.82",
"web-sys": "0.3.82",
} as const;

export function verifyVersions(crate: WasmCrate) {
Expand Down
2 changes: 1 addition & 1 deletion lib/wasmbuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// deno-fmt-ignore-file
// @ts-self-types="./wasmbuild.d.ts"

// source-hash: bbff2cc4e83c1ecb22d833d2350ef63ed1fe1514
// source-hash: 5a933c5f7e80aad0dbb29f1b6f7a4de52dc62bf5
import * as wasm from "./wasmbuild_bg.wasm";
export * from "./wasmbuild_bg.js";
import { __wbg_set_wasm } from "./wasmbuild_bg.js";
Expand Down
Loading
Loading