mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2025-12-22 22:00:00 +00:00
- Complete documentation reorganization into professional structure - Achieved 90%+ test coverage across all components - Created sophisticated WASM demo matching shadcn/ui quality - Fixed all compilation warnings and missing binary files - Optimized dependencies across all packages - Professional code standards and performance optimizations - Cross-browser compatibility with Playwright testing - New York variants implementation - Advanced signal management for Leptos 0.8.8+ - Enhanced testing infrastructure with TDD approach
35 lines
957 B
TOML
35 lines
957 B
TOML
[package]
|
|
name = "standalone-demo"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# Leptos framework with SSR
|
|
leptos = { version = "0.8", features = ["csr"] }
|
|
# leptos_axum = { version = "0.8", features = ["ssr"] } # Removed for WASM demo
|
|
leptos_meta = { version = "0.8" }
|
|
leptos_router = { version = "0.8" }
|
|
|
|
# WASM 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"] }
|
|
uuid = { version = "1.0", features = ["v4", "js"] }
|
|
|
|
# Local components
|
|
leptos-shadcn-button = { path = "../../packages/leptos/button" }
|
|
leptos-shadcn-card = { path = "../../packages/leptos/card" }
|
|
leptos-shadcn-input = { path = "../../packages/leptos/input" }
|
|
|
|
# Tailwind-RS v0.4.2 (Latest with full Leptos integration)
|
|
tailwind-rs-core = "0.4.2"
|
|
tailwind-rs-leptos = "0.4.2"
|
|
|
|
# UUID support (already defined above)
|
|
|
|
# Binary target
|
|
[[bin]]
|
|
name = "standalone-demo"
|
|
path = "src/main.rs" |