]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
feat: auto-indent use tree lists
[rust.git] / Cargo.toml
1 [workspace]
2 members = ["xtask/", "lib/*", "crates/*"]
3
4 [profile.dev]
5 # We do want incremental builds, but they are broken at the moment :(
6 # https://github.com/rust-lang/rust/issues/85003#issuecomment-833796289
7 incremental = false
8
9 # Disabling debug info speeds up builds a bunch,
10 # and we don't rely on it for debugging that much.
11 debug = 0
12
13 [profile.dev.package]
14 # These speed up local tests.
15 rowan.opt-level = 3
16 rustc-hash.opt-level = 3
17 smol_str.opt-level = 3
18 text-size.opt-level = 3
19 # This speeds up `cargo xtask dist`.
20 miniz_oxide.opt-level = 3
21
22 [profile.release]
23 # We do want incremental release builds, but they are broken at the moment :(
24 # https://github.com/rust-lang/rust/issues/85003#issuecomment-833796289
25 incremental = false
26 debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger.
27
28 [profile.test]
29 incremental = false
30
31 [patch.'crates-io']
32 # rowan = { path = "../rowan" }
33
34 # chalk-solve = { path = "../chalk/chalk-solve" }
35 # chalk-ir = { path = "../chalk/chalk-ir" }
36 # chalk-recursive = { path = "../chalk/chalk-recursive" }
37
38 # ungrammar = { path = "../ungrammar" }
39
40 # salsa = { path = "../salsa" }