From cbe257e17df88d3ce74118e008f9c45600c637bf Mon Sep 17 00:00:00 2001 From: luoxiao Date: Sat, 27 Jan 2024 00:12:03 +0800 Subject: [PATCH] feat: remove the default feature of csr --- demo/Cargo.toml | 2 +- thaw/Cargo.toml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/demo/Cargo.toml b/demo/Cargo.toml index de1810d..2dfc2ff 100644 --- a/demo/Cargo.toml +++ b/demo/Cargo.toml @@ -11,7 +11,7 @@ leptos = { version = "0.6.0-rc1" } leptos_meta = { version = "0.6.0-rc1" } leptos_router = { version = "0.6.0-rc1" } leptos_devtools = { version = "0.0.1", optional = true} -thaw = { path = "../thaw", default-features = false } +thaw = { path = "../thaw" } demo_markdown = { path = "../demo_markdown" } [features] diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index df4f166..f2b3bc3 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -28,7 +28,6 @@ cfg-if = "1.0.0" chrono = "0.4.33" [features] -default = ["csr"] csr = ["leptos/csr"] ssr = ["leptos/ssr", "leptos_meta/ssr"] hydrate = ["leptos/hydrate"]