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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,9 @@ jobs:
uses: actions/cache/restore@v4
with:
path: ~/.cargo/bin/wasm-bindgen
key: ${{ runner.os }}-wasm-bindgen-0-2-105
key: ${{ runner.os }}-wasm-bindgen-0-2-106

- run: cargo install --locked wasm-bindgen-cli --version="=0.2.105"
- run: cargo install --locked wasm-bindgen-cli --version="=0.2.106"
if: steps.wasm_bindgen_cache_restore.outputs.cache-hit != 'true'

- name: wasm-bindgen cache save
Expand All @@ -244,7 +244,7 @@ jobs:
if: always() && steps.wasm_bindgen_cache_restore.outputs.cache-hit != 'true'
with:
path: ~/.cargo/bin/wasm-bindgen
key: ${{ runner.os }}-wasm-bindgen-0-2-105
key: ${{ runner.os }}-wasm-bindgen-0-2-106

- name: cargo-leptos cache restore
id: cargo_leptos_cache_restore
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ tynm = "0.2.0"
type_reg = { version = "0.9.0", features = ["debug", "untagged", "ordered"] }
typed-builder = "0.23.1"
url = "2.5.7"
wasm-bindgen = "0.2.105"
wasm-bindgen = "0.2.106"
web-sys = "0.3.82"
yaml_error_context_hack = "0.1.0"

Expand Down
2 changes: 2 additions & 0 deletions doc/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@
- [Side Projects](side_projects.md)
- [✒️ Dot IX](side_projects/dot_ix.md)
- [📐 disposition](side_projects/disposition.md)
- [Example Input](side_projects/disposition/example_input.md)
- [Example Intermediate Representation](side_projects/disposition/example_intermediate_representation.md)

---

Expand Down
Loading