mirror of
https://github.com/adoyle0/thaw.git
synced 2025-02-02 08:34:15 -05:00
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "thaw"
|
|
version = "0.4.0-alpha"
|
|
edition = "2021"
|
|
keywords = ["web", "leptos", "ui", "thaw", "component"]
|
|
readme = "../README.md"
|
|
authors = ["luoxiaozero"]
|
|
description = "An easy to use leptos component library"
|
|
homepage = "https://github.com/thaw-ui/thaw"
|
|
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]
|
|
leptos = { workspace = true }
|
|
thaw_components = { workspace = true }
|
|
thaw_macro = { workspace = true }
|
|
thaw_utils = { workspace = true }
|
|
web-sys = { version = "0.3.69", features = [
|
|
"DomRect",
|
|
"File",
|
|
"FileList",
|
|
"DataTransfer",
|
|
"ScrollToOptions",
|
|
"ScrollBehavior",
|
|
"TreeWalker",
|
|
"NodeFilter",
|
|
] }
|
|
wasm-bindgen = "0.2.92"
|
|
icondata_core = "0.1.0"
|
|
icondata_ai = "0.0.10"
|
|
uuid = { version = "1.10.0", features = ["v4", "js"] }
|
|
cfg-if = "1.0.0"
|
|
chrono = "0.4.35"
|
|
palette = "0.7.5"
|
|
num-traits = "0.2.18"
|
|
send_wrapper = "0.6"
|
|
|
|
[features]
|
|
csr = ["leptos/csr", "thaw_components/csr", "thaw_utils/csr"]
|
|
ssr = ["leptos/ssr", "thaw_components/ssr", "thaw_utils/ssr"]
|
|
hydrate = ["leptos/hydrate", "thaw_components/hydrate", "thaw_utils/hydrate"]
|