thaw/Cargo.toml

29 lines
835 B
TOML
Raw Normal View History

2023-03-28 12:37:24 +08:00
[package]
name = "melt-ui"
2023-03-28 16:07:54 +08:00
version = "0.0.1"
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>"]
description = "A Leptos UI Library"
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-09-17 21:26:37 +08:00
leptos = { version = "0.5.0-rc2", features = ["csr"] }
2023-08-10 23:04:27 +08:00
stylers = { git = "https://github.com/abishekatp/stylers", rev = "4bfd2df" }
2023-05-14 20:08:11 +08:00
web-sys = { version = "0.3.62", features = ["DomRect"] }
2023-09-17 21:26:37 +08:00
leptos_dom = { version = "0.5.0-rc2" }
2023-06-30 22:25:41 +08:00
wasm-bindgen = "0.2.85"
icondata = { version = "0.0.7", features = [
2023-06-09 22:24:39 +08:00
"AiCloseOutlined",
"AiCheckOutlined",
"AiLeftOutlined",
] }
2023-03-30 09:40:22 +08:00
[workspace]
2023-08-29 09:11:22 +08:00
members = ["gh-pages"]