Skip to content

Commit 98f06b6

Browse files
committed
feat: Update ssr_axum dependency
1 parent 603bbb4 commit 98f06b6

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@
6363

6464
### 0.1.0-beta2 - 0.4.0-rc (2023-11-14 - 2024-12-09)
6565

66-
See [0.1 - 0.4 changelog](./changelog/CHANGELOG-0.1-0.4.md)
66+
See [0.1 - 0.4 changelog](./changelogs/CHANGELOG-0.1-0.4.md)

examples/ssr_axum/Cargo.toml

+15-9
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,27 @@ edition = "2021"
77
crate-type = ["cdylib", "rlib"]
88

99
[dependencies]
10-
axum = { version = "0.7.5", optional = true }
11-
console_error_panic_hook = "0.1"
12-
leptos = { version = "0.7.7" }
13-
leptos_axum = { version = "0.7.7", optional = true }
14-
leptos_meta = { version = "0.7.7" }
15-
leptos_router = { version = "0.7.7" }
16-
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
10+
http = "1"
1711
tower = { version = "0.5.0", optional = true }
1812
tower-http = { version = "0.5", features = ["fs"], optional = true }
13+
axum = { version = "0.8.1", optional = true }
14+
15+
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
16+
17+
console_log = "1"
18+
console_error_panic_hook = "0.1"
19+
20+
leptos = { git = "https://github.com/leptos-rs/leptos", branch = "leptos_0.8" }
21+
leptos_axum = { git = "https://github.com/leptos-rs/leptos", branch = "leptos_0.8", optional = true }
22+
leptos_meta = { git = "https://github.com/leptos-rs/leptos", branch = "leptos_0.8" }
23+
leptos_router = { git = "https://github.com/leptos-rs/leptos", branch = "leptos_0.8" }
24+
1925
wasm-bindgen = "0.2.100"
26+
2027
thiserror = "1"
2128
tracing = { version = "0.1", optional = true }
22-
http = "1"
23-
console_log = "1"
2429
log = "0.4"
30+
2531
demo = { path = "../../demo", default-features = false }
2632
thaw = { path = "../../thaw" }
2733

0 commit comments

Comments
 (0)