1 2 3 4 5 6 7 8 9 10 11
#[cfg(target_os = "linux")] use mimalloc::MiMalloc; #[cfg(target_os = "linux")] #[global_allocator] static GLOBAL: MiMalloc = MiMalloc; #[tokio::main(flavor = "current_thread")] async fn main() -> anyhow::Result<()> { computer_use_linux::run_cli_from_env().await }