Skip to content

Commit

Permalink
feat: update leptos to v0.7.0 (#327)
Browse files Browse the repository at this point in the history
* feat: update leptos to v0.7.0

* fix: remove lock wasm-bindgen version
  • Loading branch information
luoxiaozero authored Dec 1, 2024
1 parent d1d90c3 commit 76a7d2f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ thaw_components = { version = "0.2.0-beta5", path = "./thaw_components" }
thaw_macro = { version = "0.1.0-beta5", path = "./thaw_macro" }
thaw_utils = { version = "0.1.0-beta5", path = "./thaw_utils" }

leptos = { version = "0.7.0-rc2" }
leptos_meta = { version = "0.7.0-rc2" }
leptos_router = { version = "0.7.0-rc2" }
leptos = { version = "0.7.0" }
leptos_meta = { version = "0.7.0" }
leptos_router = { version = "0.7.0" }
reactive_stores = { version = "0.1.0-rc1" }
10 changes: 5 additions & 5 deletions examples/island/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
axum = { version = "0.7", optional = true }
console_error_panic_hook = "0.1"
leptos = { version = "0.7.0-rc2", features = ["experimental-islands"] }
leptos_axum = { version = "0.7.0-rc2", optional = true }
leptos_meta = { version = "0.7.0-rc2" }
leptos_router = { version = "0.7.0-rc2" }
leptos = { version = "0.7.0", features = ["islands"] }
leptos_axum = { version = "0.7.0", optional = true }
leptos_meta = { version = "0.7.0" }
leptos_router = { version = "0.7.0" }
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
tower = { version = "0.4", optional = true }
tower-http = { version = "0.5", features = ["fs"], optional = true }
wasm-bindgen = "=0.2.95"
wasm-bindgen = "0.2.95"
thiserror = "1"
tracing = { version = "0.1", optional = true }
http = "1"
Expand Down
10 changes: 5 additions & 5 deletions examples/ssr_axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
axum = { version = "0.7.5", optional = true }
console_error_panic_hook = "0.1"
leptos = { version = "0.7.0-rc2" }
leptos_axum = { version = "0.7.0-rc2", optional = true }
leptos_meta = { version = "0.7.0-rc2" }
leptos_router = { version = "0.7.0-rc2" }
leptos = { version = "0.7.0" }
leptos_axum = { version = "0.7.0", optional = true }
leptos_meta = { version = "0.7.0" }
leptos_router = { version = "0.7.0" }
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
tower = { version = "0.5.0", optional = true }
tower-http = { version = "0.5", features = ["fs"], optional = true }
wasm-bindgen = "=0.2.95"
wasm-bindgen = "0.2.95"
thiserror = "1"
tracing = { version = "0.1", optional = true }
http = "1"
Expand Down

0 comments on commit 76a7d2f

Please sign in to comment.