]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Simplify
[rust.git] / Cargo.toml
1 [workspace]
2 resolver = "2"
3 members = ["xtask/", "lib/*", "crates/*"]
4 exclude = ["crates/proc_macro_test/imp"]
5
6 [profile.dev]
7 # Disabling debug info speeds up builds a bunch,
8 # and we don't rely on it for debugging that much.
9 debug = 0
10
11 [profile.dev.package]
12 # These speed up local tests.
13 rowan.opt-level = 3
14 rustc-hash.opt-level = 3
15 smol_str.opt-level = 3
16 text-size.opt-level = 3
17 # This speeds up `cargo xtask dist`.
18 miniz_oxide.opt-level = 3
19
20 [profile.release]
21 incremental = true
22 debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger.
23
24 [patch.'crates-io']
25 # rowan = { path = "../rowan" }
26
27 # chalk-solve = { path = "../chalk/chalk-solve" }
28 # chalk-ir = { path = "../chalk/chalk-ir" }
29 # chalk-recursive = { path = "../chalk/chalk-recursive" }
30
31 # ungrammar = { path = "../ungrammar" }
32
33 # salsa = { path = "../salsa" }