From 082ae189fc8c36b41261750da454198eecdf5bf2 Mon Sep 17 00:00:00 2001 From: Neko Ayaka Date: Mon, 9 Jun 2025 00:06:12 +0800 Subject: [PATCH] chore(ci): rustup targets --- rust-toolchain.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index a147c3d6e..5bef0fda6 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -10,4 +10,11 @@ components = [ "rust-analyzer", "clippy" ] +targets = [ + "x86_64-apple-darwin", + "aarch64-apple-darwin", + "x86_64-unknown-linux-gnu", + "aarch64-unknown-linux-gnu", + "x86_64-pc-windows-msvc" +] profile = "minimal"