Introduce a shared workspace-state backend stream with snapshot/delta APIs for file tree and git changes. Migrate both aux panels to a common frontend workspace store with lifecycle-safe stream handling. Apply batched watch throttling, path-aware git refresh gating, no-op delta suppression, and bounded history compaction to improve runtime stability.
18 lines
376 B
Rust
18 lines
376 B
Rust
pub mod acp;
|
|
pub mod chat_channel;
|
|
pub mod conversations;
|
|
pub mod experts;
|
|
pub mod folder_commands;
|
|
pub mod folders;
|
|
pub mod mcp;
|
|
pub mod model_provider;
|
|
#[cfg(feature = "tauri-runtime")]
|
|
pub mod notification;
|
|
pub mod project_boot;
|
|
pub mod system_settings;
|
|
pub mod terminal;
|
|
pub mod version_control;
|
|
#[cfg(feature = "tauri-runtime")]
|
|
pub mod windows;
|
|
pub mod workspace_state;
|