mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Disable more incremental
This commit is contained in:
parent
7ab4fd7628
commit
2a4819ca19
1 changed files with 7 additions and 0 deletions
|
@ -2,6 +2,10 @@
|
||||||
members = ["xtask/", "lib/*", "crates/*"]
|
members = ["xtask/", "lib/*", "crates/*"]
|
||||||
|
|
||||||
[profile.dev]
|
[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,
|
# Disabling debug info speeds up builds a bunch,
|
||||||
# and we don't rely on it for debugging that much.
|
# and we don't rely on it for debugging that much.
|
||||||
debug = 0
|
debug = 0
|
||||||
|
@ -21,6 +25,9 @@ miniz_oxide.opt-level = 3
|
||||||
incremental = false
|
incremental = false
|
||||||
debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger.
|
debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger.
|
||||||
|
|
||||||
|
[profile.test]
|
||||||
|
incremental = false
|
||||||
|
|
||||||
[patch.'crates-io']
|
[patch.'crates-io']
|
||||||
# rowan = { path = "../rowan" }
|
# rowan = { path = "../rowan" }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue