2023-03-28 12:37:24 +08:00
|
|
|
[package]
|
2023-11-05 16:03:58 +08:00
|
|
|
name = "thaw"
|
2023-12-26 23:26:18 +08:00
|
|
|
version = "0.1.5"
|
2023-03-28 12:37:24 +08:00
|
|
|
edition = "2021"
|
2023-12-19 16:49:46 +08:00
|
|
|
keywords = ["web", "leptos", "ui", "thaw", "component"]
|
2023-03-28 12:51:45 +08:00
|
|
|
|
2023-11-05 16:03:58 +08:00
|
|
|
authors = ["luoxiaozero"]
|
2023-10-07 13:33:44 +08:00
|
|
|
description = "An easy to use leptos component library"
|
2023-11-05 16:03:58 +08:00
|
|
|
homepage = "https://github.com/thaw-ui/thaw"
|
|
|
|
repository = "https://github.com/thaw-ui/thaw"
|
2023-03-28 12:51:45 +08:00
|
|
|
license = "MIT"
|
2023-03-28 12:37:24 +08:00
|
|
|
|
|
|
|
# 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", optional = true }
|
2023-11-09 14:43:30 +08:00
|
|
|
web-sys = { version = "0.3.63", features = [
|
2023-11-05 20:10:21 +08:00
|
|
|
"DomRect",
|
|
|
|
"File",
|
|
|
|
"FileList",
|
|
|
|
"DataTransfer",
|
|
|
|
] }
|
2023-12-03 00:21:29 +08:00
|
|
|
wasm-bindgen = "0.2.89"
|
2023-10-18 23:49:27 +08:00
|
|
|
icondata = { version = "0.1.0", features = [
|
2023-06-09 22:24:39 +08:00
|
|
|
"AiCloseOutlined",
|
|
|
|
"AiCheckOutlined",
|
|
|
|
"AiLeftOutlined",
|
2023-10-05 11:06:43 +08:00
|
|
|
"AiLoadingOutlined",
|
2023-10-11 23:02:04 +08:00
|
|
|
"AiCheckCircleFilled",
|
|
|
|
"AiExclamationCircleFilled",
|
2023-10-18 16:12:13 +08:00
|
|
|
"AiCloseCircleFilled",
|
|
|
|
"AiPlusOutlined",
|
|
|
|
"AiPlusOutlined",
|
|
|
|
"AiMinusOutlined",
|
2023-12-05 19:24:20 +08:00
|
|
|
"AiRightOutlined",
|
2023-12-11 11:11:59 +08:00
|
|
|
"AiClockCircleOutlined",
|
2023-12-18 22:05:11 +08:00
|
|
|
"AiCalendarOutlined",
|
|
|
|
"AiArrowLeftOutlined",
|
|
|
|
"AiArrowRightOutlined",
|
2023-06-09 22:24:39 +08:00
|
|
|
] }
|
2023-10-18 23:49:27 +08:00
|
|
|
icondata_core = "0.0.2"
|
2023-10-19 17:16:57 +08:00
|
|
|
uuid = { version = "1.5.0", features = ["v4"] }
|
2023-11-09 16:46:14 +08:00
|
|
|
cfg-if = "1.0.0"
|
2023-12-10 03:22:37 +08:00
|
|
|
chrono = "0.4.31"
|
2023-03-30 09:40:22 +08:00
|
|
|
|
2023-11-24 10:04:54 +08:00
|
|
|
[features]
|
|
|
|
default = ["csr"]
|
|
|
|
csr = ["leptos/csr"]
|
|
|
|
ssr = ["leptos/ssr", "leptos_meta/ssr"]
|
|
|
|
hydrate = ["leptos/hydrate"]
|
|
|
|
|
2023-03-30 09:40:22 +08:00
|
|
|
[workspace]
|
2023-12-30 14:45:16 +08:00
|
|
|
members = ["demo", "demo_markdown", "examples/*"]
|