From 98087139a1d5e2b62b89deb29ee2a40bf75419a9 Mon Sep 17 00:00:00 2001 From: Doonv <58695417+doonv@users.noreply.github.com> Date: Wed, 24 Jan 2024 17:20:34 +0200 Subject: [PATCH] Add `.toml` extension to `.cargo/config_fast_builds` (#11506) # Objective `config_fast_builds` has no highlighting. ## Solution Add `.toml` extension to `.cargo/config_fast_builds` so it has highlighting --- .../{config_fast_builds => config_fast_builds.toml} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename .cargo/{config_fast_builds => config_fast_builds.toml} (84%) diff --git a/.cargo/config_fast_builds b/.cargo/config_fast_builds.toml similarity index 84% rename from .cargo/config_fast_builds rename to .cargo/config_fast_builds.toml index 1432a84b38..5993b536d5 100644 --- a/.cargo/config_fast_builds +++ b/.cargo/config_fast_builds.toml @@ -11,16 +11,16 @@ rustflags = ["-Clink-arg=-fuse-ld=lld", "-Zshare-generics=y"] # `brew install llvm` [target.x86_64-apple-darwin] rustflags = [ - "-C", - "link-arg=-fuse-ld=/usr/local/opt/llvm/bin/ld64.lld", - "-Zshare-generics=y", + "-C", + "link-arg=-fuse-ld=/usr/local/opt/llvm/bin/ld64.lld", + "-Zshare-generics=y", ] [target.aarch64-apple-darwin] rustflags = [ - "-C", - "link-arg=-fuse-ld=/opt/homebrew/opt/llvm/bin/ld64.lld", - "-Zshare-generics=y", + "-C", + "link-arg=-fuse-ld=/opt/homebrew/opt/llvm/bin/ld64.lld", + "-Zshare-generics=y", ] [target.x86_64-pc-windows-msvc]