thaw/thaw_components/Cargo.toml

26 lines
692 B
TOML
Raw Normal View History

[package]
name = "thaw_components"
2024-07-28 13:00:01 +08:00
version = "0.2.0-alpha"
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-06-13 16:00:14 +08:00
leptos = { workspace = true }
thaw_utils = { workspace = true }
2024-08-15 00:59:16 +08:00
web-sys = { version = "0.3.70", features = ["DomRect"] }
cfg-if = "1.0.0"
2024-07-09 15:04:20 +08:00
uuid = { version = "1.10.0", features = ["v4", "js"] }
2024-07-01 10:52:57 +08:00
send_wrapper = "0.6"
[features]
csr = ["leptos/csr"]
ssr = ["leptos/ssr"]
hydrate = ["leptos/hydrate"]