mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2025-12-22 22:00:00 +00:00
- Fixed compilation errors in menubar, combobox, and drawer packages - Updated to tailwind-rs-core v0.4.0 and tailwind-rs-wasm v0.4.0 for WASM compatibility - Cleaned up unused variable warnings across packages - Updated release documentation with WASM integration details - Demo working with dynamic color API and Tailwind CSS generation - All 25+ core components ready for crates.io publication Key features: ✅ WASM compatibility (no more tokio/mio dependencies) ✅ Dynamic Tailwind CSS class generation ✅ Type-safe color utilities ✅ Production-ready component library
27 lines
535 B
TOML
27 lines
535 B
TOML
[package]
|
|
name = "standalone-demo"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# Leptos framework
|
|
leptos = { version = "0.8", features = ["csr"] }
|
|
|
|
# WASM-compatible dependencies
|
|
console_error_panic_hook = "0.1"
|
|
wasm-bindgen = "0.2"
|
|
web-sys = "0.3"
|
|
js-sys = "0.3"
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
|
|
# Tailwind-RS-Core (WASM-compatible)
|
|
tailwind-rs-core = "0.3.0"
|
|
|
|
# UUID support for WASM
|
|
uuid = { version = "1.0", features = ["v4", "js"] }
|
|
|
|
# Binary target
|
|
[[bin]]
|
|
name = "standalone-demo"
|
|
path = "src/main.rs"
|