thaw/Cargo.toml
luoxiaozero 6c9e0c397f
Feat/date picker (#53)
* feat: add date picker component

* feat: add date panel

* feat: add month panel

* feat: add month panel logic

* feat: add year panel

* style: date picker component

* feat: optimized date picker style

* fix: nightly mode build
2023-12-18 22:05:11 +08:00

54 lines
1.3 KiB
TOML

[package]
name = "thaw"
version = "0.1.3"
edition = "2021"
keywords = ["web", "leptos", "ui", "thaw"]
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 = { version = "0.5.4" }
leptos_meta = { version = "0.5.4", optional = true }
web-sys = { version = "0.3.63", features = [
"DomRect",
"File",
"FileList",
"DataTransfer",
] }
wasm-bindgen = "0.2.89"
icondata = { version = "0.1.0", features = [
"AiCloseOutlined",
"AiCheckOutlined",
"AiLeftOutlined",
"AiLoadingOutlined",
"AiCheckCircleFilled",
"AiExclamationCircleFilled",
"AiCloseCircleFilled",
"AiPlusOutlined",
"AiPlusOutlined",
"AiMinusOutlined",
"AiRightOutlined",
"AiClockCircleOutlined",
"AiCalendarOutlined",
"AiArrowLeftOutlined",
"AiArrowRightOutlined",
] }
icondata_core = "0.0.2"
uuid = { version = "1.5.0", features = ["v4"] }
cfg-if = "1.0.0"
chrono = "0.4.31"
[features]
default = ["csr"]
csr = ["leptos/csr"]
ssr = ["leptos/ssr", "leptos_meta/ssr"]
hydrate = ["leptos/hydrate"]
[workspace]
members = ["demo", "examples/*"]