Skip to content

Commit

Permalink
Update the dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
clementwanjau committed Dec 19, 2024
1 parent 504540c commit 8686977
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
3 changes: 1 addition & 2 deletions examples/leptos-chart/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ edition = "2021"

[dependencies]
apexcharts-rs = { path="../../../apexcharts-rs", features = ["leptos"] }
leptos = { version = "0.6", features= ["csr"] }
wasm-bindgen = "0.2.92"
leptos = { version = "0.7", features= ["csr"] }
15 changes: 7 additions & 8 deletions examples/leptos-ssr-chart/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,16 @@ crate-type = ["cdylib", "rlib"]
actix-files = { version = "0.6", optional = true }
actix-web = { version = "4", optional = true, features = ["macros"] }
console_error_panic_hook = "0.1"
http = { version = "1.0.0", optional = true }
leptos = { version = "0.6" }
leptos_meta = { version = "0.6" }
leptos_actix = { version = "0.6", optional = true }
leptos_router = { version = "0.6" }
wasm-bindgen = "=0.2.93"
leptos = { version = "0.7" }
leptos_meta = { version = "0.7", optional = true }
leptos_actix = { version = "0.7", optional = true }
leptos_router = { version = "0.7" , optional = true }
wasm-bindgen = "0.2"
apexcharts-rs = { path = "../../../apexcharts-rs", features = ["leptos"] }

[features]
csr = ["leptos/csr", "leptos_meta/csr", "leptos_router/csr"]
hydrate = ["leptos/hydrate", "leptos_meta/hydrate", "leptos_router/hydrate"]
csr = ["leptos/csr", "leptos_meta", "leptos_router"]
hydrate = ["leptos/hydrate", "leptos_meta", "leptos_router"]
ssr = [
"dep:actix-files",
"dep:actix-web",
Expand Down

0 comments on commit 8686977

Please sign in to comment.