9069: minor: Don't force-disable incremental r=jonas-schievink a=jonas-schievink

1.52.1 turns incremental off regardless of this setting, so this is unnecessary. Removing this allow manually overriding Cargo to enable incremental.

bors r+

Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>
This commit is contained in:
bors[bot] 2021-05-30 21:48:43 +00:00 committed by GitHub
commit d6490c69fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,10 +3,6 @@ resolver = "2"
members = ["xtask/", "lib/*", "crates/*"]
[profile.dev]
# We do want incremental builds, but they are broken at the moment :(
# https://github.com/rust-lang/rust/issues/85003#issuecomment-833796289
incremental = false
# Disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
debug = 0
@ -21,9 +17,6 @@ text-size.opt-level = 3
miniz_oxide.opt-level = 3
[profile.release]
# We do want incremental release builds, but they are broken at the moment :(
# https://github.com/rust-lang/rust/issues/85003#issuecomment-833796289
incremental = false
debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger.
[profile.test]