]> git.lizzy.rs Git - rust.git/blob - src/Cargo.toml
Auto merge of #39234 - segevfiner:fix-backtraces-on-windows-gnu, r=petrochenkov
[rust.git] / src / Cargo.toml
1 [workspace]
2 members = [
3   "bootstrap",
4   "rustc",
5   "rustc/std_shim",
6   "rustc/test_shim",
7   "tools/cargotest",
8   "tools/compiletest",
9   "tools/error_index_generator",
10   "tools/linkchecker",
11   "tools/rustbook",
12   "tools/tidy",
13   "tools/build-manifest",
14 ]
15
16 # Curiously, compiletest will segfault if compiled with opt-level=3 on 64-bit
17 # MSVC when running the compile-fail test suite when a should-fail test panics.
18 # But hey if this is removed and it gets past the bots, sounds good to me.
19 [profile.release]
20 opt-level = 2
21 [profile.bench]
22 opt-level = 2
23
24 # These options are controlled from our rustc wrapper script, so turn them off
25 # here and have them controlled elsewhere.
26 [profile.dev]
27 debug = false
28 debug-assertions = false
29 [profile.test]
30 debug = false
31 debug-assertions = false