Files
leptos-shadcn-ui/examples/leptos/Cargo.toml
Peter Hanssens 0988aed57e Release v0.8.1: Major infrastructure improvements and cleanup
- 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
2025-09-16 22:14:20 +10:00

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"