]> git.lizzy.rs Git - rust.git/blobdiff - Cargo.toml
Make assoc_resolutions always have a Substitution
[rust.git] / Cargo.toml
index 31a0560d93656de5e0b09ebaf171b0b4859a23d5..286ef1e7dcb4dfde854c8ee20ab38575fed61264 100644 (file)
@@ -1,14 +1,34 @@
 [workspace]
-members = [ "crates/*", "xtask/" ]
+members = ["xtask/", "lib/*", "crates/*"]
+exclude = ["crates/proc-macro-test/imp"]
 
 [profile.dev]
-# 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.
 debug = 0
 
+[profile.dev.package]
+# These speed up local tests.
+rowan.opt-level = 3
+rustc-hash.opt-level = 3
+smol_str.opt-level = 3
+text-size.opt-level = 3
+# This speeds up `cargo xtask dist`.
+miniz_oxide.opt-level = 3
+
 [profile.release]
 incremental = true
-debug = 0 # set this to 1 or 2 to get more useful backtraces in debugger
+# Set this to 1 or 2 to get more useful backtraces in debugger.
+debug = 0
 
 [patch.'crates-io']
 # rowan = { path = "../rowan" }
+
+# chalk-solve = { path = "../chalk/chalk-solve" }
+# chalk-ir = { path = "../chalk/chalk-ir" }
+# chalk-recursive = { path = "../chalk/chalk-recursive" }
+# chalk-derive = { path = "../chalk/chalk-derive" }
+
+# ungrammar = { path = "../ungrammar" }
+
+# salsa = { path = "../salsa" }