From 6512abdef8219f3a36981ecaf4f642ef2c81c213 Mon Sep 17 00:00:00 2001 From: luoxiao Date: Mon, 11 Mar 2024 21:18:50 +0800 Subject: [PATCH 1/2] feat: update leptos to v0.6.9 --- demo/Cargo.toml | 6 +++--- examples/ssr_axum/Cargo.toml | 8 ++++---- thaw/Cargo.toml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/demo/Cargo.toml b/demo/Cargo.toml index 4bdaab01..dbb289b5 100644 --- a/demo/Cargo.toml +++ b/demo/Cargo.toml @@ -7,9 +7,9 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -leptos = { version = "0.6.7" } -leptos_meta = { version = "0.6.7" } -leptos_router = { version = "0.6.7" } +leptos = { version = "0.6.9" } +leptos_meta = { version = "0.6.9" } +leptos_router = { version = "0.6.9" } leptos_devtools = { version = "0.0.1", optional = true } thaw = { path = "../thaw" } demo_markdown = { path = "../demo_markdown" } diff --git a/examples/ssr_axum/Cargo.toml b/examples/ssr_axum/Cargo.toml index 8ab54455..125039ee 100644 --- a/examples/ssr_axum/Cargo.toml +++ b/examples/ssr_axum/Cargo.toml @@ -11,10 +11,10 @@ axum = { version = "0.7.4", optional = true } console_error_panic_hook = "0.1" console_log = "1" cfg-if = "1" -leptos = { version = "0.6.7" } -leptos_axum = { version = "0.6.7", optional = true } -leptos_meta = { version = "0.6.7" } -leptos_router = { version = "0.6.7" } +leptos = { version = "0.6.9" } +leptos_axum = { version = "0.6.9", optional = true } +leptos_meta = { version = "0.6.9" } +leptos_router = { version = "0.6.9" } log = "0.4" simple_logger = "4" tokio = { version = "1.35.1", features = ["rt-multi-thread"], optional = true } diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index 7b087d20..c00cfb43 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -13,8 +13,8 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -leptos = { version = "0.6.7" } -leptos_meta = { version = "0.6.7", optional = true } +leptos = { version = "0.6.9" } +leptos_meta = { version = "0.6.9", optional = true } web-sys = { version = "0.3.67", features = [ "DomRect", "File", From 6d37caf435c90b5531da3bbe4bc707d5aa6a23b9 Mon Sep 17 00:00:00 2001 From: luoxiao Date: Tue, 12 Mar 2024 11:30:46 +0800 Subject: [PATCH 2/2] feat: update dependencies --- examples/ssr_axum/Cargo.toml | 2 +- thaw/Cargo.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/ssr_axum/Cargo.toml b/examples/ssr_axum/Cargo.toml index 125039ee..0d395861 100644 --- a/examples/ssr_axum/Cargo.toml +++ b/examples/ssr_axum/Cargo.toml @@ -20,7 +20,7 @@ simple_logger = "4" tokio = { version = "1.35.1", features = ["rt-multi-thread"], optional = true } tower = { version = "0.4.13", optional = true } tower-http = { version = "0.5.1", features = ["fs"], optional = true } -wasm-bindgen = "=0.2.90" +wasm-bindgen = "=0.2.92" thiserror = "1.0.56" tracing = { version = "0.1.40", optional = true } http = "0.2.8" diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index c00cfb43..846f115c 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -15,19 +15,19 @@ license = "MIT" [dependencies] leptos = { version = "0.6.9" } leptos_meta = { version = "0.6.9", optional = true } -web-sys = { version = "0.3.67", features = [ +web-sys = { version = "0.3.69", features = [ "DomRect", "File", "FileList", "DataTransfer", ] } -wasm-bindgen = "0.2.90" +wasm-bindgen = "0.2.92" icondata_core = "0.1.0" icondata_ai = "0.0.10" uuid = { version = "1.7.0", features = ["v4"] } cfg-if = "1.0.0" -chrono = "0.4.33" -palette = "0.7.4" +chrono = "0.4.35" +palette = "0.7.5" [features] csr = ["leptos/csr"]