From 58df6921d63c008433060c3199bb55fa399455a8 Mon Sep 17 00:00:00 2001 From: Ayoub Date: Mon, 22 Dec 2025 18:56:48 +0100 Subject: [PATCH] Remove `rust-toolchain.toml` (#6) This file specifies the required Rust toolchain and targets for the Zed editor and is not needed for GPUI. --- rust-toolchain.toml | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml deleted file mode 100644 index 59765d94ab..0000000000 --- a/rust-toolchain.toml +++ /dev/null @@ -1,8 +0,0 @@ -[toolchain] -channel = "1.91.1" -profile = "minimal" -components = [ "rustfmt", "clippy" ] -targets = [ - "wasm32-wasip2", # extensions - "x86_64-unknown-linux-musl", # remote server -]