aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 97508c57b4f6e0de73c9b0aaab5fd6cd4f3824b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[workspace]
members = [ "crates/*", "xtask/" ]

[profile.dev]
# disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
debug = 0

[profile.release]
incremental = true
debug = 0 # set this to 1 or 2 to get more useful backtraces in debugger

[patch.'crates-io']
# rowan = { path = "../rowan" }