Tauri-specific code has been moved to the botapp crate. Changes: - Removed tauri, tauri-plugin-*, trayicon, ksni dependencies - Removed desktop feature flags - Removed src/desktop/ module (moved to botapp) - Removed tauri.conf.json (moved to botapp) - Simplified build.rs (no tauri_build) - Updated lib.rs and main.rs for pure web operation Architecture: - botui: Pure web UI (this crate) - no native deps - botapp: Tauri wrapper that loads botui's suite This separation allows: - Same UI code for web, desktop, and mobile - Clean dependency management - App-specific features only in native app
9 lines
280 B
Rust
9 lines
280 B
Rust
//! Build script for botui
|
|
//!
|
|
//! This is a minimal build script since botui is now a pure web project.
|
|
//! Tauri build requirements have been moved to the botapp crate.
|
|
|
|
fn main() {
|
|
// No build steps required for pure web UI
|
|
// Tauri-specific builds are now in botapp
|
|
}
|