mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-14 17:07:26 +00:00
9a04426617
Hopefully, this makes printf debugging faster!
13 lines
258 B
TOML
13 lines
258 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 = 1 # only line info
|
|
|
|
[patch.'crates-io']
|