mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2026-01-08 05:52:56 +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
52 lines
1.1 KiB
TOML
52 lines
1.1 KiB
TOML
[package]
|
|
name = "leptos-shadcn-performance-testing"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Performance regression testing suite for leptos-shadcn-ui components"
|
|
repository = "https://github.com/cloud-shuttle/leptos-shadcn-ui"
|
|
license = "MIT"
|
|
authors = ["CloudShuttle <info@cloudshuttle.com>"]
|
|
keywords = ["leptos", "performance", "testing", "benchmarks", "regression"]
|
|
categories = ["development-tools", "web-programming"]
|
|
|
|
[dependencies]
|
|
# Core dependencies
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
|
|
# Time handling
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
instant = "0.1"
|
|
|
|
# File system operations
|
|
walkdir = "2.0"
|
|
|
|
# System information
|
|
sysinfo = "0.30"
|
|
|
|
# Logging
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.0"
|
|
tokio-test = "0.4"
|
|
pretty_assertions = "1.0"
|
|
|
|
[features]
|
|
default = ["benchmarks", "regression", "reporting"]
|
|
benchmarks = []
|
|
regression = []
|
|
reporting = []
|
|
ci-integration = []
|
|
|
|
[[bin]]
|
|
name = "perf-test"
|
|
path = "src/bin/performance_tester.rs"
|
|
|
|
# [[bench]]
|
|
# name = "component_benchmarks"
|
|
# harness = false |