Files
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

38 lines
756 B
TOML

[package]
name = "leptos-shadcn-demo"
version = "0.1.0"
edition = "2021"
[workspace]
[dependencies]
# Leptos framework
leptos = { version = "0.8", features = ["csr"] }
leptos_meta = { version = "0.8" }
# WASM dependencies
console_error_panic_hook = "0.1"
console_log = "1.0"
log = "0.4"
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"] }
# Tailwind-RS
tailwind-rs-core = "0.4.2"
tailwind-rs-leptos = "0.4.2"
# Local components (using published versions for now)
leptos-shadcn-button = "0.8.0"
leptos-shadcn-card = "0.8.0"
leptos-shadcn-input = "0.8.0"
[lib]
crate-type = ["cdylib"]
# [[bin]]
# name = "leptos-shadcn-demo"
# path = "src/main.rs"