From 2a4819ca195a85bf4b388c423f262ae6ff8d0418 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sat, 8 May 2021 19:57:18 +0300 Subject: Disable more incremental --- Cargo.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 1f97a1dc5..cf3013c08 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,10 @@ 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,6 +25,9 @@ miniz_oxide.opt-level = 3 incremental = false debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger. +[profile.test] +incremental = false + [patch.'crates-io'] # rowan = { path = "../rowan" } -- cgit v1.2.3