thaw/Cargo.toml

49 lines
1.2 KiB
TOML
Raw Normal View History

2023-03-28 12:37:24 +08:00
[package]
2023-11-05 16:03:58 +08:00
name = "thaw"
2023-11-19 16:28:06 +08:00
version = "0.1.0"
2023-03-28 12:37:24 +08:00
edition = "2021"
2023-11-05 16:03:58 +08:00
keywords = ["web", "leptos", "ui", "thaw"]
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]
leptos = { version = "0.5.2" }
leptos_meta = { version = "0.5.2", optional = true }
web-sys = { version = "0.3.63", features = [
2023-11-05 20:10:21 +08:00
"DomRect",
"File",
"FileList",
"DataTransfer",
] }
wasm-bindgen = "0.2.88"
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",
"AiLoadingOutlined",
2023-10-11 23:02:04 +08:00
"AiCheckCircleFilled",
"AiExclamationCircleFilled",
2023-10-18 16:12:13 +08:00
"AiCloseCircleFilled",
"AiPlusOutlined",
"AiPlusOutlined",
"AiMinusOutlined",
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-03-30 09:40:22 +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]
members = ["demo", "examples/*"]