mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +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/*"]
|
||||
|
||||
[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" }
|
||||
|
||||
|
|
Loading…
Reference in a new issue