Skip to content

Commit 76a7d2f

Browse files
authored
feat: update leptos to v0.7.0 (#327)
* feat: update leptos to v0.7.0 * fix: remove lock wasm-bindgen version
1 parent d1d90c3 commit 76a7d2f

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ thaw_components = { version = "0.2.0-beta5", path = "./thaw_components" }
1919
thaw_macro = { version = "0.1.0-beta5", path = "./thaw_macro" }
2020
thaw_utils = { version = "0.1.0-beta5", path = "./thaw_utils" }
2121

22-
leptos = { version = "0.7.0-rc2" }
23-
leptos_meta = { version = "0.7.0-rc2" }
24-
leptos_router = { version = "0.7.0-rc2" }
22+
leptos = { version = "0.7.0" }
23+
leptos_meta = { version = "0.7.0" }
24+
leptos_router = { version = "0.7.0" }
2525
reactive_stores = { version = "0.1.0-rc1" }

examples/island/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ crate-type = ["cdylib", "rlib"]
99
[dependencies]
1010
axum = { version = "0.7", optional = true }
1111
console_error_panic_hook = "0.1"
12-
leptos = { version = "0.7.0-rc2", features = ["experimental-islands"] }
13-
leptos_axum = { version = "0.7.0-rc2", optional = true }
14-
leptos_meta = { version = "0.7.0-rc2" }
15-
leptos_router = { version = "0.7.0-rc2" }
12+
leptos = { version = "0.7.0", features = ["islands"] }
13+
leptos_axum = { version = "0.7.0", optional = true }
14+
leptos_meta = { version = "0.7.0" }
15+
leptos_router = { version = "0.7.0" }
1616
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
1717
tower = { version = "0.4", optional = true }
1818
tower-http = { version = "0.5", features = ["fs"], optional = true }
19-
wasm-bindgen = "=0.2.95"
19+
wasm-bindgen = "0.2.95"
2020
thiserror = "1"
2121
tracing = { version = "0.1", optional = true }
2222
http = "1"

examples/ssr_axum/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ crate-type = ["cdylib", "rlib"]
99
[dependencies]
1010
axum = { version = "0.7.5", optional = true }
1111
console_error_panic_hook = "0.1"
12-
leptos = { version = "0.7.0-rc2" }
13-
leptos_axum = { version = "0.7.0-rc2", optional = true }
14-
leptos_meta = { version = "0.7.0-rc2" }
15-
leptos_router = { version = "0.7.0-rc2" }
12+
leptos = { version = "0.7.0" }
13+
leptos_axum = { version = "0.7.0", optional = true }
14+
leptos_meta = { version = "0.7.0" }
15+
leptos_router = { version = "0.7.0" }
1616
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
1717
tower = { version = "0.5.0", optional = true }
1818
tower-http = { version = "0.5", features = ["fs"], optional = true }
19-
wasm-bindgen = "=0.2.95"
19+
wasm-bindgen = "0.2.95"
2020
thiserror = "1"
2121
tracing = { version = "0.1", optional = true }
2222
http = "1"

0 commit comments

Comments
 (0)