rust/Cargo.toml

14 lines
258 B
TOML
Raw Normal View History

2018-02-03 10:51:06 +01:00
[workspace]
2019-10-17 22:01:53 +02:00
members = [ "crates/*", "xtask/" ]
2018-08-15 23:23:22 +02:00
2019-10-11 10:06:28 +02: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 10:06:28 +02:00
2018-08-15 23:23:22 +02:00
[profile.release]
2018-12-20 09:53:29 +01:00
incremental = true
2019-07-22 17:25:56 +02:00
debug = 1 # only line info
2018-12-30 09:09:17 +01:00
[patch.'crates-io']