2024-03-19 23:04:16 +08:00
|
|
|
[package]
|
|
|
|
name = "thaw_components"
|
2024-05-21 21:41:48 +08:00
|
|
|
version = "0.1.2"
|
2024-03-19 23:04:16 +08:00
|
|
|
edition = "2021"
|
|
|
|
keywords = ["leptos", "thaw", "components"]
|
|
|
|
readme = "../README.md"
|
|
|
|
authors = ["luoxiaozero"]
|
|
|
|
description = "Shared Thaw internal components"
|
|
|
|
repository = "https://github.com/thaw-ui/thaw"
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-05 23:32:13 +08:00
|
|
|
leptos = { version = "0.6.10" }
|
2024-03-19 23:04:16 +08:00
|
|
|
thaw_utils = { workspace = true }
|
|
|
|
web-sys = { version = "0.3.69", features = ["DomRect"] }
|
|
|
|
cfg-if = "1.0.0"
|
2024-04-07 23:36:22 +08:00
|
|
|
uuid = { version = "1.7.0", features = ["v4"] }
|
2024-03-19 23:04:16 +08:00
|
|
|
|
|
|
|
[features]
|
|
|
|
csr = ["leptos/csr"]
|
|
|
|
ssr = ["leptos/ssr"]
|
|
|
|
hydrate = ["leptos/hydrate"]
|