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..0d395861 100644 --- a/examples/ssr_axum/Cargo.toml +++ b/examples/ssr_axum/Cargo.toml @@ -11,16 +11,16 @@ 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 } 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 7b087d20..846f115c 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -13,21 +13,21 @@ 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 } -web-sys = { version = "0.3.67", features = [ +leptos = { version = "0.6.9" } +leptos_meta = { version = "0.6.9", optional = true } +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"]