]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Bump prettier
[rust.git] / Cargo.toml
1 [workspace]
2 members = ["xtask/", "lib/*", "crates/*"]
3 exclude = ["crates/proc-macro-test/imp"]
4
5 [profile.dev]
6 # Disabling debug info speeds up builds a bunch,
7 # and we don't rely on it for debugging that much.
8 debug = 0
9
10 [profile.dev.package]
11 # These speed up local tests.
12 rowan.opt-level = 3
13 rustc-hash.opt-level = 3
14 smol_str.opt-level = 3
15 text-size.opt-level = 3
16 # This speeds up `cargo xtask dist`.
17 miniz_oxide.opt-level = 3
18
19 [profile.release]
20 incremental = true
21 # Set this to 1 or 2 to get more useful backtraces in debugger.
22 debug = 0
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" }