We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab4fd7 commit 2a4819cCopy full SHA for 2a4819c
Cargo.toml
@@ -2,6 +2,10 @@
2
members = ["xtask/", "lib/*", "crates/*"]
3
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
+
9
# Disabling debug info speeds up builds a bunch,
10
# and we don't rely on it for debugging that much.
11
debug = 0
@@ -21,6 +25,9 @@ miniz_oxide.opt-level = 3
21
25
incremental = false
22
26
debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger.
23
27
28
+[profile.test]
29
30
24
31
[patch.'crates-io']
32
# rowan = { path = "../rowan" }
33
0 commit comments