
Remove the entire sandbox security system including: - All sandbox-related Rust code and dependencies (gaol crate) - Sandbox command handlers and platform-specific implementations - Comprehensive test suite for sandbox functionality - Agent sandbox settings UI components Simplify agent configuration by removing sandbox and permission fields: - Remove sandbox_enabled, enable_file_read, enable_file_write, enable_network from agent configs - Update all CC agents to use simplified configuration format - Remove sandbox references from documentation and UI
15 lines
370 B
Rust
15 lines
370 B
Rust
// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
|
|
|
|
// Declare modules
|
|
pub mod checkpoint;
|
|
pub mod claude_binary;
|
|
pub mod commands;
|
|
pub mod process;
|
|
|
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
|
pub fn run() {
|
|
tauri::Builder::default()
|
|
.run(tauri::generate_context!())
|
|
.expect("error while running tauri application");
|
|
}
|