thaw/Cargo.toml

36 lines
1,001 B
TOML
Raw Normal View History

2023-03-28 12:37:24 +08:00
[package]
name = "melt-ui"
2023-10-21 18:42:27 +08:00
version = "0.0.4"
2023-03-28 12:37:24 +08:00
edition = "2021"
2023-03-28 12:51:45 +08:00
keywords = ["web", "leptos", "ui", "melt-ui"]
authors = ["luoxiaozero <luoxiaozero@163.com>"]
2023-10-07 13:33:44 +08:00
description = "An easy to use leptos component library"
2023-03-28 12:51:45 +08:00
homepage = "https://github.com/luoxiaozero/melt-ui"
repository = "https://github.com/luoxiaozero/melt-ui"
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-10-24 17:39:09 +08:00
web-sys = { version = "0.3.62", features = ["DomRect", "File", "FileList"] }
2023-06-30 22:25:41 +08:00
wasm-bindgen = "0.2.85"
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"]