2024-03-19 22:02:43 +08:00
|
|
|
[package]
|
|
|
|
name = "thaw_utils"
|
2024-09-14 00:05:25 +08:00
|
|
|
version = "0.1.0-beta3"
|
2024-03-19 22:02:43 +08:00
|
|
|
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]
|
2024-06-12 17:36:34 +08:00
|
|
|
leptos = { workspace = true }
|
2024-07-09 15:04:20 +08:00
|
|
|
leptos_meta = { workspace = true, optional = true }
|
2024-08-15 00:59:16 +08:00
|
|
|
web-sys = "0.3.70"
|
|
|
|
wasm-bindgen = "0.2.93"
|
2024-03-19 22:02:43 +08:00
|
|
|
cfg-if = "1.0.0"
|
2024-08-15 00:59:16 +08:00
|
|
|
chrono = "0.4.38"
|
2024-06-13 16:00:14 +08:00
|
|
|
send_wrapper = "0.6"
|
2024-03-19 22:02:43 +08:00
|
|
|
|
|
|
|
[features]
|
|
|
|
csr = ["leptos/csr"]
|
|
|
|
ssr = ["leptos/ssr", "leptos_meta/ssr"]
|
|
|
|
hydrate = ["leptos/hydrate"]
|
2024-08-09 14:05:24 +08:00
|
|
|
nightly = ["leptos/nightly"]
|