mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 15:14:32 +00:00
14 lines
336 B
TOML
14 lines
336 B
TOML
[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" }
|