2018-02-03 09:51:06 +00:00
|
|
|
[workspace]
|
2021-01-15 17:57:32 +00:00
|
|
|
members = ["xtask/", "lib/*", "crates/*"]
|
2018-08-15 21:23:22 +00:00
|
|
|
|
2019-10-11 08:06:28 +00:00
|
|
|
[profile.dev]
|
2021-05-08 16:57:18 +00:00
|
|
|
# We do want incremental builds, but they are broken at the moment :(
|
|
|
|
# https://github.com/rust-lang/rust/issues/85003#issuecomment-833796289
|
|
|
|
incremental = false
|
|
|
|
|
2020-08-18 15:44:51 +00:00
|
|
|
# Disabling debug info speeds up builds a bunch,
|
2019-11-11 07:11:46 +00:00
|
|
|
# and we don't rely on it for debugging that much.
|
|
|
|
debug = 0
|
2019-10-11 08:06:28 +00:00
|
|
|
|
2020-08-18 15:44:51 +00:00
|
|
|
[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
|
|
|
|
|
2018-08-15 21:23:22 +00:00
|
|
|
[profile.release]
|
2021-05-08 10:36:06 +00:00
|
|
|
# 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
|
2020-08-18 15:44:51 +00:00
|
|
|
debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger.
|
2020-01-31 19:49:44 +00:00
|
|
|
|
2021-05-08 16:57:18 +00:00
|
|
|
[profile.test]
|
|
|
|
incremental = false
|
|
|
|
|
2018-12-30 08:09:17 +00:00
|
|
|
[patch.'crates-io']
|
2020-01-11 21:15:27 +00:00
|
|
|
# rowan = { path = "../rowan" }
|
2020-02-15 17:00:14 +00:00
|
|
|
|
|
|
|
# chalk-solve = { path = "../chalk/chalk-solve" }
|
|
|
|
# chalk-ir = { path = "../chalk/chalk-ir" }
|
2020-10-30 17:57:16 +00:00
|
|
|
# chalk-recursive = { path = "../chalk/chalk-recursive" }
|
2020-12-15 14:37:37 +00:00
|
|
|
|
|
|
|
# ungrammar = { path = "../ungrammar" }
|
2021-05-06 17:59:54 +00:00
|
|
|
|
|
|
|
# salsa = { path = "../salsa" }
|