Files
leptos-shadcn-ui/packages/leptos/breadcrumb/Cargo.toml
Peter Hanssens b21983bded 🚀 RELEASE PREP: v0.9.0 Major Release - Complete Test Suite Transformation
## 🎯 **RELEASE PREPARATION:**
 **Version Bump**: Updated all packages from 0.8.1 to 0.9.0
 **Release Notes**: Comprehensive v0.9.0 release documentation
 **Publishing Script**: Automated v0.9.0 publication to crates.io
 **Compilation Verified**: All packages compile successfully
 **Tests Passing**: Complete test suite validation

## 📦 **PACKAGES READY FOR RELEASE:**
- **47 Component Packages**: All updated to v0.9.0
- **3 New Infrastructure Packages**: test-runner, performance-monitoring, visual-testing
- **Main Library Package**: leptos-shadcn-ui v0.9.0
- **Total**: 51 packages ready for publication

## 🎊 **MAJOR RELEASE HIGHLIGHTS:**
- **100% Real Test Coverage**: 3,014 real tests, 0 placeholder tests
- **394 WASM Tests**: Browser-based component validation
- **6 Integration Test Suites**: Complex workflow testing
- **Performance Monitoring**: Real-time metrics and regression detection
- **Visual Regression Testing**: Screenshot comparison and diff detection
- **Rust-Based Testing Infrastructure**: Native test execution

## 🚀 **READY FOR PUBLICATION:**
All packages are versioned, tested, and ready for crates.io publication.
This represents the most significant quality improvement in project history.

Next: Run ./publish_v0.9.0.sh to publish to crates.io
2025-09-20 23:19:57 +10:00

29 lines
760 B
TOML

[package]
name = "leptos-shadcn-breadcrumb"
description = "Leptos port of shadcn/ui breadcrumb"
homepage = "https://shadcn-ui.rustforweb.org/components/breadcrumb.html"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
version = "0.9.0"
[dependencies]
leptos = { workspace = true, features = ["csr", "ssr"] }
leptos-style = { workspace = true }
tailwind_fuse.workspace = true
serde = { version = "1.0", features = ["derive"] }
leptos-shadcn-signal-management = "0.1.0"
[features]
default = ["leptos/csr"]
csr = ["leptos/csr"]
ssr = ["leptos/ssr"]
hydrate = ["leptos/hydrate"]
new_york = []
[dev-dependencies]
shadcn-ui-test-utils = { path = "../../test-utils" }
wasm-bindgen-test = { workspace = true }