aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2021-05-08 17:57:18 +0100
committerAleksey Kladov <[email protected]>2021-05-08 18:00:15 +0100
commit2a4819ca195a85bf4b388c423f262ae6ff8d0418 (patch)
treebf10f7254bf31bbf288644bba85bcf955b4038ff
parent7ab4fd762884a10c432dbe13e690ded5bcc716c0 (diff)
Disable more incremental
-rw-r--r--Cargo.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1f97a1dc5..cf3013c08 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,6 +2,10 @@
2members = ["xtask/", "lib/*", "crates/*"] 2members = ["xtask/", "lib/*", "crates/*"]
3 3
4[profile.dev] 4[profile.dev]
5# We do want incremental builds, but they are broken at the moment :(
6# https://github.com/rust-lang/rust/issues/85003#issuecomment-833796289
7incremental = false
8
5# Disabling debug info speeds up builds a bunch, 9# Disabling debug info speeds up builds a bunch,
6# and we don't rely on it for debugging that much. 10# and we don't rely on it for debugging that much.
7debug = 0 11debug = 0
@@ -21,6 +25,9 @@ miniz_oxide.opt-level = 3
21incremental = false 25incremental = false
22debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger. 26debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger.
23 27
28[profile.test]
29incremental = false
30
24[patch.'crates-io'] 31[patch.'crates-io']
25# rowan = { path = "../rowan" } 32# rowan = { path = "../rowan" }
26 33