Skip to content

Commit eecf86c

Browse files
authored
feat: update leptos to v0.6.9 (#134)
* feat: update leptos to v0.6.9 * feat: update dependencies
1 parent 1676f78 commit eecf86c

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

demo/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ edition = "2021"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
leptos = { version = "0.6.7" }
11-
leptos_meta = { version = "0.6.7" }
12-
leptos_router = { version = "0.6.7" }
10+
leptos = { version = "0.6.9" }
11+
leptos_meta = { version = "0.6.9" }
12+
leptos_router = { version = "0.6.9" }
1313
leptos_devtools = { version = "0.0.1", optional = true }
1414
thaw = { path = "../thaw" }
1515
demo_markdown = { path = "../demo_markdown" }

examples/ssr_axum/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ axum = { version = "0.7.4", optional = true }
1111
console_error_panic_hook = "0.1"
1212
console_log = "1"
1313
cfg-if = "1"
14-
leptos = { version = "0.6.7" }
15-
leptos_axum = { version = "0.6.7", optional = true }
16-
leptos_meta = { version = "0.6.7" }
17-
leptos_router = { version = "0.6.7" }
14+
leptos = { version = "0.6.9" }
15+
leptos_axum = { version = "0.6.9", optional = true }
16+
leptos_meta = { version = "0.6.9" }
17+
leptos_router = { version = "0.6.9" }
1818
log = "0.4"
1919
simple_logger = "4"
2020
tokio = { version = "1.35.1", features = ["rt-multi-thread"], optional = true }
2121
tower = { version = "0.4.13", optional = true }
2222
tower-http = { version = "0.5.1", features = ["fs"], optional = true }
23-
wasm-bindgen = "=0.2.90"
23+
wasm-bindgen = "=0.2.92"
2424
thiserror = "1.0.56"
2525
tracing = { version = "0.1.40", optional = true }
2626
http = "0.2.8"

thaw/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ license = "MIT"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
leptos = { version = "0.6.7" }
17-
leptos_meta = { version = "0.6.7", optional = true }
18-
web-sys = { version = "0.3.67", features = [
16+
leptos = { version = "0.6.9" }
17+
leptos_meta = { version = "0.6.9", optional = true }
18+
web-sys = { version = "0.3.69", features = [
1919
"DomRect",
2020
"File",
2121
"FileList",
2222
"DataTransfer",
2323
] }
24-
wasm-bindgen = "0.2.90"
24+
wasm-bindgen = "0.2.92"
2525
icondata_core = "0.1.0"
2626
icondata_ai = "0.0.10"
2727
uuid = { version = "1.7.0", features = ["v4"] }
2828
cfg-if = "1.0.0"
29-
chrono = "0.4.33"
30-
palette = "0.7.4"
29+
chrono = "0.4.35"
30+
palette = "0.7.5"
3131

3232
[features]
3333
csr = ["leptos/csr"]

0 commit comments

Comments
 (0)