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