thaw/Cargo.toml

31 lines
948 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-06-09 22:24:39 +08:00
leptos = { git = "https://github.com/leptos-rs/leptos.git", rev = "3d75c71", features = [
"stable",
] }
2023-03-30 09:40:22 +08:00
stylers = "0.3.1"
2023-05-14 20:08:11 +08:00
web-sys = { version = "0.3.62", features = ["DomRect"] }
2023-06-09 22:24:39 +08:00
leptos_dom = { git = "https://github.com/leptos-rs/leptos.git", rev = "3d75c71" }
leptos_icons = { git = "https://github.com/luoxiaozero/leptos-icons.git", rev = "4fe4417", features = [
"AiCloseOutlined",
"AiCheckOutlined",
"AiLeftOutlined",
] }
2023-05-14 20:08:11 +08:00
wasm-bindgen = "0.2.85"
2023-03-30 09:40:22 +08:00
[workspace]
2023-06-13 12:43:15 +08:00
members = ["examples/basic", "gh-pages"]