mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-23 06:19:22 -05:00
21506b2164
* feat: add ssr_axum template * feat: demo added the ssr mode * fix: demo ssr mode * feat(ssr): mount_style * pref: delete some useless fikes * fix(ssr): problems caused by using wasm_bindgen * feat: add hydrate * pref: Demo component * fix(hydrate): teleport component * fix(hydrate): hydrate feature * fix(hydrate): tabs component * feat: GlobalStyle component margin style * docs(ssr): static assets
48 lines
1.2 KiB
TOML
48 lines
1.2 KiB
TOML
[package]
|
|
name = "thaw"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
keywords = ["web", "leptos", "ui", "thaw"]
|
|
|
|
authors = ["luoxiaozero"]
|
|
description = "An easy to use leptos component library"
|
|
homepage = "https://github.com/thaw-ui/thaw"
|
|
repository = "https://github.com/thaw-ui/thaw"
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
leptos = { version = "0.5.2" }
|
|
leptos_meta = { version = "0.5.2", optional = true }
|
|
web-sys = { version = "0.3.63", features = [
|
|
"DomRect",
|
|
"File",
|
|
"FileList",
|
|
"DataTransfer",
|
|
] }
|
|
wasm-bindgen = "0.2.88"
|
|
icondata = { version = "0.1.0", features = [
|
|
"AiCloseOutlined",
|
|
"AiCheckOutlined",
|
|
"AiLeftOutlined",
|
|
"AiLoadingOutlined",
|
|
"AiCheckCircleFilled",
|
|
"AiExclamationCircleFilled",
|
|
"AiCloseCircleFilled",
|
|
"AiPlusOutlined",
|
|
"AiPlusOutlined",
|
|
"AiMinusOutlined",
|
|
] }
|
|
icondata_core = "0.0.2"
|
|
uuid = { version = "1.5.0", features = ["v4"] }
|
|
cfg-if = "1.0.0"
|
|
|
|
[features]
|
|
default = ["csr"]
|
|
csr = ["leptos/csr"]
|
|
ssr = ["leptos/ssr", "leptos_meta/ssr"]
|
|
hydrate = ["leptos/hydrate"]
|
|
|
|
[workspace]
|
|
members = ["demo", "examples/*"]
|