Rust Desktop Applications
Overview
Rust has emerged as a premier language for building desktop applications that combine native performance with memory safety. The ecosystem offers two main approaches: Tauri for hybrid web UI + Rust backend apps (think Electron but 10x smaller and faster), and native GUI frameworks like egui, iced, and slint for pure Rust interfaces.
Tauri has revolutionized desktop development by enabling developers to use web technologies (React, Vue, Svelte) for the frontend while leveraging Rust's performance and safety for system-level operations. With bundle sizes under 5MB and memory usage 1/10th of Electron, Tauri apps deliver desktop-class performance. Native frameworks shine for specialized use cases: egui for immediate-mode tools and game editors, iced for Elm-style reactive apps, slint for embedded and declarative UIs.
This skill covers the complete Rust desktop development lifecycle from framework selection through architecture, state management, platform integration, and deployment. You'll build production-ready applications with proper IPC patterns, async runtime integration, native system access, and cross-platform distribution.
When to Use This Skill
Activate when building desktop applications that need native performance, small bundle sizes, system integration, or memory safety guarantees. Specifically use when:
- Building Electron alternatives with web UI + Rust backend (Tauri)
- Creating high-performance developer tools or productivity apps
- Developing system utilities requiring native OS integration
- Building cross-platform apps for Windows, macOS, and Linux
- Need <10MB bundle sizes vs 100MB+ Electron apps
- Implementing real-time applications (audio/video processing, games)
- Creating embedded GUI applications (kiosks, IoT devices)
Don't Use When
- Simple web apps - Use Next.js, Vite, or web frameworks
- Mobile-first applications - Use Flutter, React Native, or Kotlin Multiplatform
- Purely CLI tools - Use clap/structopt for command-line apps
- Browser extensions - Use WebExtensions API
- Quick prototypes - Native development has setup overhead
- Team lacks Rust experience - Steep learning curve for system programming
The Iron Law
TAURI FOR WEB UI + RUST BACKEND | NATIVE GUI FOR PURE RUST | NEVER MIX BUSINESS LOGIC IN FRONTEND
Duplicating logic between frontend and backend, or bypassing IPC for direct access, violates architecture.
Core Principles
- Framework Alignment: Tauri for web-skilled teams, native GUI for Rust-first projects
- Clear Separation: Frontend handles UI, Rust backend handles business logic and system access
- Type-Safe IPC: Commands and events strongly typed with serde serialization
- Async Runtime: Tokio for backend concurrency, prevent blocking main thread
- Security First: Validate all IPC inputs, minimize exposed commands, CSP policies
- Platform Abstraction: Write once, handle platform differences gracefully
Quick Start
Choose Your Framework
- Tauri: Have web skills (React/Vue/Svelte)? Want rapid UI development? →
cargo install tauri-cli
- Native GUI: Pure Rust project? Immediate mode or reactive patterns? → Choose egui/iced/slint
Initialize Project
# Tauri
cargo create-tauri-app my-app
# Select: npm, React/Vue/Svelte, TypeScript
# Native (egui example)
cargo new my-app
cargo add eframe egui
Setup Architecture
- Tauri: Define commands in
src-tauri/src/main.rs, handle IPC
- Native: Implement app state, event loop, and UI update logic
- Structure:
src/ (backend), ui/ or src-ui/ (frontend if Tauri)
Implement Core Features
- Define Tauri commands with
#[tauri::command]
- Setup state management (Arc<Mutex> or channels)
- Integrate Tokio for async operations
- Add error handling with
Result<T, E>
Add Platform Integration
- File system access (dialogs, read/write)
- System tray, notifications, auto-updates
- Deep linking, custom URL schemes
- OS-specific features (Windows registry, macOS sandboxing)
Build and Distribute
# Development
cargo tauri dev # or cargo run
# Production build
cargo tauri build # Creates installers for current platform
# Cross-platform: Use GitHub Actions with matrix builds
Framework Decision Tree
Need desktop app?
├─ Have web frontend skills (React/Vue/Svelte)?
│ └─ YES → Use Tauri
│ ├─ Need <5MB bundles? ✓
│ ├─ System integration? ✓
│ ├─ Cross-platform? ✓
│ └─ Rapid UI development? ✓
│
└─ Pure Rust, no web frontend?
├─ Game editor or immediate mode tools? → egui
├─ Elm-style reactive architecture? → iced
├─ Declarative UI, embedded devices? → slint
└─ Data-first reactive? → druid
Tauri when: Web UI expertise, need modern frontend frameworks, rapid iteration
Native when: Maximum performance, no web dependencies, specialized UI patterns
Navigation
Detailed guides available:
- Tauri Framework: Complete Tauri architecture, project setup, IPC communication patterns, native API access, configuration, security model, and build process with real-world examples
- Native GUI Frameworks: Deep dive into egui, iced, druid, and slint - architecture patterns, when to use each, comparison matrix, and production code examples
- Architecture Patterns: Desktop-specific patterns including MVC/MVVM, command pattern, event-driven architecture, plugin systems, resource management, and error handling strategies
- State Management: State management strategies, async runtime integration with Tokio, message passing, reactive patterns, persistence (configs/databases), and multi-window state sharing
- Platform Integration: File system access, system tray, notifications, auto-updates, deep linking, OS-specific features (Windows/macOS/Linux), permissions, and security
- Testing & Deployment: Integration testing, UI testing approaches, cross-compilation, platform-specific builds, distribution (installers/bundles/stores), signing, notarization, and CI/CD pipelines
Key Patterns
Correct Tauri Pattern:
✅ Commands in Rust backend
✅ Type-safe IPC with serde
✅ Async operations with Tokio
✅ State management with Arc<Mutex<T>>
✅ Error propagation with Result<T, E>
✅ Frontend calls backend via invoke()
Correct Native GUI Pattern:
✅ Immediate mode (egui) or retained mode (iced)
✅ State updates trigger redraws
✅ Event handling in Rust
✅ Platform-agnostic rendering
✅ Resource cleanup on drop
Incorrect Patterns:
❌ Business logic in frontend JavaScript
❌ Exposing unsafe commands without validation
❌ Blocking operations on main thread
❌ Direct filesystem access from frontend
❌ Missing error handling on IPC
❌ Hardcoded platform-specific paths
Red Flags - STOP
- Blocking the main thread - Use Tokio spawn for long operations
- Exposing sensitive commands - Validate, rate limit, minimize surface area
- Missing CSP in Tauri - Configure Content Security Policy
- No input validation - Always validate IPC command arguments
- Direct frontend file access - Use Tauri file system APIs
- Ignoring platform differences - Test on all target platforms
- Large bundle sizes - Profile and optimize dependencies
- No auto-update strategy - Users won't manually update
Integration with Other Skills
- vite-local-dev: Integrate Vite with Tauri for hot module replacement and fast frontend builds
- async-testing: Test async Tokio code in Tauri commands and background tasks
- performance-profiling: Profile Rust backend with Criterion, flamegraphs for optimization
- test-driven-development: Write tests for commands, state management, and business logic
- verification-before-completion: Test cross-platform builds before shipping
- systematic-debugging: Debug Tauri IPC issues, inspect console logs, use Rust debugger
Real-World Impact
Performance Metrics:
- Bundle size: 3-5MB (Tauri) vs 100-200MB (Electron)
- Memory usage: 50-100MB (Tauri) vs 500MB-1GB (Electron)
- Startup time: <1s (Tauri) vs 3-5s (Electron)
- Build time: 1-2 min (Tauri) vs 5-10 min (Electron)
Production Examples:
- Warp Terminal: High-performance terminal built with Rust (egui/custom)
- Lapce: Fast code editor using Druid (later custom framework)
- Zed: Collaborative code editor with native Rust UI
- Notion-like apps: Using Tauri for desktop versions
- System utilities: File managers, task managers, monitoring tools
The Bottom Line
Rust desktop development offers unmatched performance with memory safety.
Choose Tauri for web UI + Rust backend with tiny bundles. Choose native GUI for pure Rust with specialized patterns. Architect with clear frontend/backend separation. Use type-safe IPC. Integrate Tokio for async. Handle platform differences. Test cross-platform early.
This is the Rust desktop way.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: rust-desktop-applications3description: Build cross-platform desktop applications with Rust using Tauri framework and native GUI alternatives Use when this capability is needed.4---56# Rust Desktop Applications78## Overview910Rust has emerged as a premier language for building desktop applications that combine native performance with memory safety. The ecosystem offers two main approaches: **Tauri** for hybrid web UI + Rust backend apps (think Electron but 10x smaller and faster), and **native GUI frameworks** like egui, iced, and slint for pure Rust interfaces.1112Tauri has revolutionized desktop development by enabling developers to use web technologies (React, Vue, Svelte) for the frontend while leveraging Rust's performance and safety for system-level operations. With bundle sizes under 5MB and memory usage 1/10th of Electron, Tauri apps deliver desktop-class performance. Native frameworks shine for specialized use cases: egui for immediate-mode tools and game editors, iced for Elm-style reactive apps, slint for embedded and declarative UIs.1314This skill covers the complete Rust desktop development lifecycle from framework selection through architecture, state management, platform integration, and deployment. You'll build production-ready applications with proper IPC patterns, async runtime integration, native system access, and cross-platform distribution.1516## When to Use This Skill1718Activate when building desktop applications that need **native performance**, **small bundle sizes**, **system integration**, or **memory safety guarantees**. Specifically use when:1920- Building Electron alternatives with web UI + Rust backend (Tauri)21- Creating high-performance developer tools or productivity apps22- Developing system utilities requiring native OS integration23- Building cross-platform apps for Windows, macOS, and Linux24- Need <10MB bundle sizes vs 100MB+ Electron apps25- Implementing real-time applications (audio/video processing, games)26- Creating embedded GUI applications (kiosks, IoT devices)2728## Don't Use When2930- **Simple web apps** - Use Next.js, Vite, or web frameworks31- **Mobile-first applications** - Use Flutter, React Native, or Kotlin Multiplatform32- **Purely CLI tools** - Use clap/structopt for command-line apps33- **Browser extensions** - Use WebExtensions API34- **Quick prototypes** - Native development has setup overhead35- **Team lacks Rust experience** - Steep learning curve for system programming3637## The Iron Law3839**TAURI FOR WEB UI + RUST BACKEND | NATIVE GUI FOR PURE RUST | NEVER MIX BUSINESS LOGIC IN FRONTEND**4041Duplicating logic between frontend and backend, or bypassing IPC for direct access, violates architecture.4243## Core Principles44451. **Framework Alignment**: Tauri for web-skilled teams, native GUI for Rust-first projects462. **Clear Separation**: Frontend handles UI, Rust backend handles business logic and system access473. **Type-Safe IPC**: Commands and events strongly typed with serde serialization484. **Async Runtime**: Tokio for backend concurrency, prevent blocking main thread495. **Security First**: Validate all IPC inputs, minimize exposed commands, CSP policies506. **Platform Abstraction**: Write once, handle platform differences gracefully5152## Quick Start53541. **Choose Your Framework**55 - **Tauri**: Have web skills (React/Vue/Svelte)? Want rapid UI development? → `cargo install tauri-cli`56 - **Native GUI**: Pure Rust project? Immediate mode or reactive patterns? → Choose egui/iced/slint57582. **Initialize Project**59 ```bash60 # Tauri61 cargo create-tauri-app my-app62 # Select: npm, React/Vue/Svelte, TypeScript6364 # Native (egui example)65 cargo new my-app66 cargo add eframe egui67 ```68693. **Setup Architecture**70 - Tauri: Define commands in `src-tauri/src/main.rs`, handle IPC71 - Native: Implement app state, event loop, and UI update logic72 - Structure: `src/` (backend), `ui/` or `src-ui/` (frontend if Tauri)73744. **Implement Core Features**75 - Define Tauri commands with `#[tauri::command]`76 - Setup state management (Arc<Mutex<T>> or channels)77 - Integrate Tokio for async operations78 - Add error handling with `Result<T, E>`79805. **Add Platform Integration**81 - File system access (dialogs, read/write)82 - System tray, notifications, auto-updates83 - Deep linking, custom URL schemes84 - OS-specific features (Windows registry, macOS sandboxing)85866. **Build and Distribute**87 ```bash88 # Development89 cargo tauri dev # or cargo run9091 # Production build92 cargo tauri build # Creates installers for current platform9394 # Cross-platform: Use GitHub Actions with matrix builds95 ```9697## Framework Decision Tree9899```100Need desktop app?101├─ Have web frontend skills (React/Vue/Svelte)?102│ └─ YES → Use Tauri103│ ├─ Need <5MB bundles? ✓104│ ├─ System integration? ✓105│ ├─ Cross-platform? ✓106│ └─ Rapid UI development? ✓107│108└─ Pure Rust, no web frontend?109 ├─ Game editor or immediate mode tools? → egui110 ├─ Elm-style reactive architecture? → iced111 ├─ Declarative UI, embedded devices? → slint112 └─ Data-first reactive? → druid113```114115**Tauri when**: Web UI expertise, need modern frontend frameworks, rapid iteration116**Native when**: Maximum performance, no web dependencies, specialized UI patterns117118## Navigation119120Detailed guides available:121122- **[Tauri Framework](references/tauri-framework.md)**: Complete Tauri architecture, project setup, IPC communication patterns, native API access, configuration, security model, and build process with real-world examples123- **[Native GUI Frameworks](references/native-gui-frameworks.md)**: Deep dive into egui, iced, druid, and slint - architecture patterns, when to use each, comparison matrix, and production code examples124- **[Architecture Patterns](references/architecture-patterns.md)**: Desktop-specific patterns including MVC/MVVM, command pattern, event-driven architecture, plugin systems, resource management, and error handling strategies125- **[State Management](references/state-management.md)**: State management strategies, async runtime integration with Tokio, message passing, reactive patterns, persistence (configs/databases), and multi-window state sharing126- **[Platform Integration](references/platform-integration.md)**: File system access, system tray, notifications, auto-updates, deep linking, OS-specific features (Windows/macOS/Linux), permissions, and security127- **[Testing & Deployment](references/testing-deployment.md)**: Integration testing, UI testing approaches, cross-compilation, platform-specific builds, distribution (installers/bundles/stores), signing, notarization, and CI/CD pipelines128129## Key Patterns130131**Correct Tauri Pattern:**132```rust133✅ Commands in Rust backend134✅ Type-safe IPC with serde135✅ Async operations with Tokio136✅ State management with Arc<Mutex<T>>137✅ Error propagation with Result<T, E>138✅ Frontend calls backend via invoke()139```140141**Correct Native GUI Pattern:**142```rust143✅ Immediate mode (egui) or retained mode (iced)144✅ State updates trigger redraws145✅ Event handling in Rust146✅ Platform-agnostic rendering147✅ Resource cleanup on drop148```149150**Incorrect Patterns:**151```rust152❌ Business logic in frontend JavaScript153❌ Exposing unsafe commands without validation154❌ Blocking operations on main thread155❌ Direct filesystem access from frontend156❌ Missing error handling on IPC157❌ Hardcoded platform-specific paths158```159160## Red Flags - STOP161162- **Blocking the main thread** - Use Tokio spawn for long operations163- **Exposing sensitive commands** - Validate, rate limit, minimize surface area164- **Missing CSP in Tauri** - Configure Content Security Policy165- **No input validation** - Always validate IPC command arguments166- **Direct frontend file access** - Use Tauri file system APIs167- **Ignoring platform differences** - Test on all target platforms168- **Large bundle sizes** - Profile and optimize dependencies169- **No auto-update strategy** - Users won't manually update170171## Integration with Other Skills172173- **vite-local-dev**: Integrate Vite with Tauri for hot module replacement and fast frontend builds174- **async-testing**: Test async Tokio code in Tauri commands and background tasks175- **performance-profiling**: Profile Rust backend with Criterion, flamegraphs for optimization176- **test-driven-development**: Write tests for commands, state management, and business logic177- **verification-before-completion**: Test cross-platform builds before shipping178- **systematic-debugging**: Debug Tauri IPC issues, inspect console logs, use Rust debugger179180## Real-World Impact181182**Performance Metrics:**183- Bundle size: 3-5MB (Tauri) vs 100-200MB (Electron)184- Memory usage: 50-100MB (Tauri) vs 500MB-1GB (Electron)185- Startup time: <1s (Tauri) vs 3-5s (Electron)186- Build time: 1-2 min (Tauri) vs 5-10 min (Electron)187188**Production Examples:**189- **Warp Terminal**: High-performance terminal built with Rust (egui/custom)190- **Lapce**: Fast code editor using Druid (later custom framework)191- **Zed**: Collaborative code editor with native Rust UI192- **Notion-like apps**: Using Tauri for desktop versions193- **System utilities**: File managers, task managers, monitoring tools194195## The Bottom Line196197**Rust desktop development offers unmatched performance with memory safety.**198199Choose Tauri for web UI + Rust backend with tiny bundles. Choose native GUI for pure Rust with specialized patterns. Architect with clear frontend/backend separation. Use type-safe IPC. Integrate Tokio for async. Handle platform differences. Test cross-platform early.200201This is the Rust desktop way.202203---204> Converted and distributed by [TomeVault](https://tomevault.io/claim/pythoninthegrasses) — claim your Tome and manage your conversions.205<!-- tomevault:4.0:skill_md:2026-04-13 -->