thaw/Cargo.toml

40 lines
976 B
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-05 20:30:57 +08:00
version = "0.1.0-alpha"
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]
2023-10-11 09:28:44 +08:00
leptos = { version = "0.5.1", features = ["csr"] }
2023-11-05 20:10:21 +08:00
web-sys = { version = "0.3.62", features = [
"DomRect",
"File",
"FileList",
"DataTransfer",
] }
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-03-30 09:40:22 +08:00
[workspace]
2023-10-11 11:07:57 +08:00
members = ["demo"]