thaw/Cargo.toml

25 lines
783 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-04-13 13:00:55 +08:00
leptos = { version = "0.2.5", features = ["stable"] }
2023-03-30 09:40:22 +08:00
stylers = "0.3.1"
2023-04-23 15:07:33 +08:00
web-sys = { version = "0.3.61", features = ["DomRect"] }
2023-04-13 13:00:55 +08:00
leptos_dom = { version = "0.2.5" }
2023-04-14 17:28:32 +08:00
leptos-icons = { git = "https://github.com/Carlosted/leptos-icons.git", features = ["AiCloseOutlined", "AiCheckOutlined"] }
2023-04-21 20:35:26 +08:00
wasm-bindgen = "0.2.84"
2023-03-30 09:40:22 +08:00
[workspace]
members = ["examples/basic"]