mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-22 22:09:22 -05:00
26 lines
660 B
TOML
26 lines
660 B
TOML
[package]
|
|
name = "thaw_utils"
|
|
version = "0.0.3"
|
|
edition = "2021"
|
|
keywords = ["leptos", "thaw", "utils"]
|
|
readme = "../README.md"
|
|
authors = ["luoxiaozero"]
|
|
description = "Shared Thaw utility functions"
|
|
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 }
|
|
leptos_meta = { workspace = true, optional = true }
|
|
web-sys = "0.3.69"
|
|
wasm-bindgen = "0.2.92"
|
|
cfg-if = "1.0.0"
|
|
chrono = "0.4.35"
|
|
send_wrapper = "0.6"
|
|
|
|
[features]
|
|
csr = ["leptos/csr"]
|
|
ssr = ["leptos/ssr", "leptos_meta/ssr"]
|
|
hydrate = ["leptos/hydrate"]
|