2023-06-13 12:43:15 +08:00
|
|
|
[package]
|
2023-10-11 21:53:51 +08:00
|
|
|
publish = false
|
2023-10-11 11:07:57 +08:00
|
|
|
name = "demo"
|
2023-06-13 12:43:15 +08:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-11-29 21:41:45 +08:00
|
|
|
leptos = { version = "0.5.4" }
|
|
|
|
leptos_meta = { version = "0.5.4" }
|
|
|
|
leptos_router = { version = "0.5.4" }
|
2023-11-13 16:17:45 +08:00
|
|
|
leptos_devtools = "0.0.1"
|
2023-11-24 10:04:54 +08:00
|
|
|
thaw = { path = "../", default-features = false }
|
2023-10-18 23:49:27 +08:00
|
|
|
icondata = { version = "0.1.0", features = [
|
2023-06-19 23:07:01 +08:00
|
|
|
"AiCloseOutlined",
|
|
|
|
"AiCheckOutlined",
|
2023-11-08 11:02:38 +08:00
|
|
|
"AiGithubOutlined",
|
2023-11-16 20:25:22 +08:00
|
|
|
"AiUserOutlined",
|
2023-06-19 23:07:01 +08:00
|
|
|
] }
|
2023-10-24 21:49:36 +08:00
|
|
|
prisms = { git = "https://github.com/luoxiaozero/prisms", rev = "16d4d34b93fc20578ebf03137d54ecc7eafa4d4b" }
|
2023-09-09 22:22:27 +08:00
|
|
|
|
|
|
|
[features]
|
2023-11-24 10:04:54 +08:00
|
|
|
default = ["csr"]
|
2023-09-09 22:22:27 +08:00
|
|
|
tracing = ["leptos/tracing"]
|
2023-11-24 10:04:54 +08:00
|
|
|
csr = ["leptos/csr", "leptos_meta/csr", "leptos_router/csr", "thaw/csr"]
|
|
|
|
ssr = ["leptos/ssr", "leptos_meta/ssr", "leptos_router/ssr", "thaw/ssr"]
|
|
|
|
hydrate = [
|
|
|
|
"leptos/hydrate",
|
|
|
|
"leptos_meta/hydrate",
|
|
|
|
"leptos_router/hydrate",
|
|
|
|
"thaw/hydrate",
|
|
|
|
]
|