Tauri 2.0 App Development Tauri is a framework for building small, fast, secure desktop apps using web frontends and Rust backends. Architecture Overview Project Structure Commands (Frontend → Rust) Define commands in Rust with : Call from frontend (direct): Project convention: Wrap with TanStack Query for caching and state management: Key rules: - Arguments must implement - Return types must implement - Use for fallible operations - Async commands run on thread pool (non-blocking) - Snake case in Rust → camelCase in JS arguments State Management Share state across commands: Access via AppHan…