From 1135877683a446230813b3bdf84c2c945bfd4f5f Mon Sep 17 00:00:00 2001 From: Logan Magee Date: Mon, 7 Sep 2020 17:32:08 -0800 Subject: [PATCH] Recommend `.cargo/config.toml` over `.cargo/config` (#459) As of Rust version 1.39.0, `config.toml` is the preferred filename for `cargo`s configuration file. Incidentally added a newline at EOF. https://doc.rust-lang.org/cargo/reference/config.html --- .cargo/config_fast_builds | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cargo/config_fast_builds b/.cargo/config_fast_builds index 12d12048a83d6..9ef67781bd634 100644 --- a/.cargo/config_fast_builds +++ b/.cargo/config_fast_builds @@ -1,4 +1,4 @@ -# Rename this file to `config` to enable "fast build" configuration. Please read the notes below. +# Rename this file to `config.toml` to enable "fast build" configuration. Please read the notes below. # NOTE: For maximum performance, build using a nightly compiler # If you are using rust stable, remove the "-Zshare-generics=y" below. @@ -19,4 +19,4 @@ rustflags = ["-Zshare-generics=y"] # Optional: Uncommenting the following improves compile times, but reduces the amount of debug info to 'line number tables only' # In most cases the gains are negligible, but if you are on macos and have slow compile times you should see significant gains. #[profile.dev] -#debug = 1 \ No newline at end of file +#debug = 1