leptos_state/
lib.rs

1//! # leptos-state v1.0.0 - Redesigned Architecture
2//!
3//! This module contains the completely redesigned architecture that fixes
4//! the fundamental type system issues present in v0.2.x.
5//!
6//! ## Design Philosophy
7//!
8//! 1. **Trait-first design** with proper bounds
9//! 2. **Feature flags that actually work** independently and together
10//! 3. **Zero-cost abstractions** where possible
11//! 4. **WASM-first but native-compatible**
12//! 5. **Leptos v0.8+ integration** from day one
13
14pub mod v1;
15pub mod hooks;
16pub mod machine;
17pub mod store;
18pub mod utils;
19
20// Re-export main types for easy access
21pub use v1::*;
22pub use hooks::*;
23pub use machine::*;