mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-23 06:19:22 -05:00
3df65a4e26
* demo: init demo-markdown * demo: add include_md macro * demo: improve include_md macro * demo: improve include_md macro * demo: improve include_md macro * demo: improve code block * demo: add syntect css * demo: improve include_md macro * demo: include_md handle table
36 lines
1.1 KiB
TOML
36 lines
1.1 KiB
TOML
[package]
|
|
publish = false
|
|
name = "demo"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
leptos = { version = "0.5.4" }
|
|
leptos_meta = { version = "0.5.4" }
|
|
leptos_router = { version = "0.5.4" }
|
|
leptos_devtools = "0.0.1"
|
|
thaw = { path = "../", default-features = false }
|
|
icondata = { version = "0.1.0", features = [
|
|
"AiCloseOutlined",
|
|
"AiCheckOutlined",
|
|
"AiGithubOutlined",
|
|
"AiUserOutlined",
|
|
"AiSearchOutlined",
|
|
] }
|
|
prisms = { git = "https://github.com/luoxiaozero/prisms", rev = "16d4d34b93fc20578ebf03137d54ecc7eafa4d4b" }
|
|
demo_markdown = { path = "../demo_markdown" }
|
|
|
|
[features]
|
|
default = ["csr"]
|
|
tracing = ["leptos/tracing"]
|
|
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",
|
|
]
|
|
nightly = ["leptos/nightly", "leptos_meta/nightly", "leptos_router/nightly"]
|