rust/Cargo.toml

14 lines
304 B
TOML
Raw Normal View History

2018-02-03 12:51:06 +03:00
[workspace]
2019-10-17 23:01:53 +03:00
members = [ "crates/*", "xtask/" ]
2018-08-16 00:23:22 +03:00
2019-10-11 11:06:28 +03: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 11:06:28 +03:00
2018-08-16 00:23:22 +03:00
[profile.release]
2018-12-20 11:53:29 +03:00
incremental = true
2019-11-15 21:18:44 +03:00
debug = 0 # set this to 1 or 2 to get more useful backtraces in debugger
2018-12-30 11:09:17 +03:00
[patch.'crates-io']