]> git.lizzy.rs Git - rust.git/blobdiff - Cargo.toml
Auto merge of #12349 - lnicola:universal-vsix, r=lnicola
[rust.git] / Cargo.toml
index ba1be2e5eacd2a119d44eaf5b66049d406f8d817..6b68ca823894f90f3769a6c4dc60a6b4e1cb49a5 100644 (file)
@@ -1,15 +1,11 @@
 [workspace]
-resolver = "2"
 members = ["xtask/", "lib/*", "crates/*"]
+exclude = ["crates/proc-macro-test/imp"]
 
 [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 = 1
+debug = 0
 
 [profile.dev.package]
 # These speed up local tests.
@@ -21,13 +17,9 @@ text-size.opt-level = 3
 miniz_oxide.opt-level = 3
 
 [profile.release]
-# We do want incremental release builds, but they are broken at the moment :(
-# https://github.com/rust-lang/rust/issues/85003#issuecomment-833796289
-incremental = false
-debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger.
-
-[profile.test]
-incremental = false
+incremental = true
+# Set this to 1 or 2 to get more useful backtraces in debugger.
+debug = 0
 
 [patch.'crates-io']
 # rowan = { path = "../rowan" }