From a68c13563a975d93e657020f75146aca8851ae8e Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Tue, 2 Nov 2021 17:04:39 +0100 Subject: [PATCH] Use .cargo/config.toml instead of .cargo/config `.cargo/config.toml` is the preferred form for the local configuration file. This is emphasized in _The Cargo Book_ with the following note: > Note: Cargo also reads config files without the `.toml` extension, such > as `.cargo/config`. Support for the `.toml` extension was added in version > 1.39 and is the preferred form. Moreover, this helps with toml-aware text editors as they will recognize the file extension. --- .cargo/{config => config.toml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .cargo/{config => config.toml} (100%) diff --git a/.cargo/config b/.cargo/config.toml similarity index 100% rename from .cargo/config rename to .cargo/config.toml