diff options
author | Aleksey Kladov <[email protected]> | 2021-05-08 17:57:18 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2021-05-08 18:00:15 +0100 |
commit | 2a4819ca195a85bf4b388c423f262ae6ff8d0418 (patch) | |
tree | bf10f7254bf31bbf288644bba85bcf955b4038ff | |
parent | 7ab4fd762884a10c432dbe13e690ded5bcc716c0 (diff) |
Disable more incremental
-rw-r--r-- | Cargo.toml | 7 |
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 @@ | |||
2 | members = ["xtask/", "lib/*", "crates/*"] | 2 | members = ["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 | ||
7 | incremental = 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. |
7 | debug = 0 | 11 | debug = 0 |
@@ -21,6 +25,9 @@ miniz_oxide.opt-level = 3 | |||
21 | incremental = false | 25 | incremental = false |
22 | debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger. | 26 | debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger. |
23 | 27 | ||
28 | [profile.test] | ||
29 | incremental = false | ||
30 | |||
24 | [patch.'crates-io'] | 31 | [patch.'crates-io'] |
25 | # rowan = { path = "../rowan" } | 32 | # rowan = { path = "../rowan" } |
26 | 33 | ||