mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2026-05-25 16:00:50 +00:00
- Implemented comprehensive TDD for Dialog, Form, and Select components - Added 65 comprehensive tests with 100% pass rate - Updated all component versions to 0.7.0 - Enhanced test coverage for accessibility, performance, and functionality - Ready for production deployment with enterprise-level quality
34 lines
888 B
TOML
34 lines
888 B
TOML
[package]
|
|
name = "leptos-shadcn-api-standards"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "API standardization framework and validation tools for leptos-shadcn-ui"
|
|
repository = "https://github.com/cloud-shuttle/leptos-shadcn-ui"
|
|
license = "MIT"
|
|
authors = ["CloudShuttle <info@cloudshuttle.com>"]
|
|
keywords = ["leptos", "ui", "components", "standards", "validation"]
|
|
categories = ["web-programming", "gui", "development-tools"]
|
|
|
|
[dependencies]
|
|
# Core dependencies
|
|
leptos = { version = "0.8", features = ["csr", "hydrate"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
|
|
# Validation and testing
|
|
regex = "1.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# CSS utilities
|
|
cssparser = "0.31"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
tempfile = "3.0"
|
|
|
|
[features]
|
|
default = ["validation", "linting"]
|
|
validation = []
|
|
linting = []
|
|
testing = [] |