Files
leptos-shadcn-ui/demo-simple/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

37 lines
925 B
TOML

[package]
name = "leptos-shadcn-demo"
version = "0.1.0"
edition = "2021"
[dependencies]
# Leptos framework with SSR
leptos = { version = "0.8", features = ["ssr"] }
leptos_axum = { version = "0.8", features = ["ssr"] }
leptos_meta = { version = "0.8", features = ["ssr"] }
leptos_router = { version = "0.8", features = ["ssr"] }
# Server dependencies
axum = "0.7"
tokio = { version = "1.0", features = ["full"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["fs", "cors"] }
tracing = "0.1"
tracing-subscriber = "0.3"
# 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
tailwind-rs-core = "0.4.2"
tailwind-rs-leptos = "0.4.2"
# UUID support
uuid = { version = "1.0", features = ["v4"] }
# Binary target
[[bin]]
name = "demo"
path = "src/main.rs"