]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Merge #2637
[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.release]
10 incremental = true
11 debug = 0 # set this to 1 or 2 to get more useful backtraces in debugger
12
13 [patch.'crates-io']
14 # rowan = { path = "../rowan" }