Skip to content

Commit

Permalink
Recommend .cargo/config.toml over .cargo/config (#459)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
lberrymage committed Sep 8, 2020
1 parent 413caae commit 69aa9bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .cargo/config_fast_builds
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
#debug = 1

0 comments on commit 69aa9bf

Please sign in to comment.