Skip to content

Commit 9483b53

Browse files
authored
Update wasm-bindgen version in examples (#275)
1 parent 6360718 commit 9483b53

File tree

5 files changed

+50
-52
lines changed

5 files changed

+50
-52
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ jobs:
261261
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
262262
- name: Install cargo-leptos
263263
if: startsWith(matrix.example, 'ssr')
264-
run: cargo binstall -y cargo-leptos
264+
run: cargo binstall -y cargo-leptos@0.2.22
265265
env:
266266
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
267267
- name: Cache dependencies

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
## 2025-01-13 - [0.2.2]
44

5-
- Fixes compatibility with fluent-templates v0.13 (requires fluent-templates
5+
- Use `std::sync::LazyLock` instead of `once_cell::sync::Lazy`.
6+
Fixes compatibility with fluent-templates v0.13 (requires fluent-templates
67
v0.13.0 or higher).
78

89
## 2024-12-23 - [0.2.1]
910

10-
- Use `std::sync::LazyLock` instead of `once_cell::sync::Lazy`.
11-
Fixes compatibility with fluent-templates v0.12 (requires fluent-templates
11+
- Fixes compatibility with fluent-templates v0.12 (requires fluent-templates
1212
v0.12.0 or higher).
1313

1414
## 2024-12-17 - [0.2.0]

Cargo.lock

+44-46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/ssr-hydrate-actix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fluent-templates = { version = "0.13", default-features = false, features = [
2020
"macros",
2121
"walkdir",
2222
] }
23-
wasm-bindgen = "=0.2.99"
23+
wasm-bindgen = "=0.2.96"
2424

2525
[features]
2626
hydrate = [

examples/ssr-hydrate-axum/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fluent-templates = { version = "0.13", default-features = false, features = [
2222
"macros",
2323
"walkdir",
2424
] }
25-
wasm-bindgen = "=0.2.99"
25+
wasm-bindgen = "=0.2.96"
2626

2727
[features]
2828
csr = ["leptos/csr"]

0 commit comments

Comments
 (0)