rust-analyzer/Cargo.toml

15 lines
336 B
TOML
Raw Normal View History

2018-02-03 09:51:06 +00:00
[workspace]
2019-10-17 20:01:53 +00:00
members = [ "crates/*", "xtask/" ]
2018-08-15 21:23:22 +00:00
2019-10-11 08:06:28 +00:00
[profile.dev]
# disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
debug = 0
2019-10-11 08:06:28 +00:00
2018-08-15 21:23:22 +00:00
[profile.release]
2018-12-20 08:53:29 +00:00
incremental = true
2019-11-15 18:18:44 +00:00
debug = 0 # set this to 1 or 2 to get more useful backtraces in debugger
2018-12-30 08:09:17 +00:00
[patch.'crates-io']
2020-01-11 21:15:27 +00:00
# rowan = { path = "../rowan" }