]> git.lizzy.rs Git - rust.git/blob - src/Cargo.toml
fix up tests
[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 ]
14
15 # Curiously, compiletest will segfault if compiled with opt-level=3 on 64-bit
16 # MSVC when running the compile-fail test suite when a should-fail test panics.
17 # But hey if this is removed and it gets past the bots, sounds good to me.
18 [profile.release]
19 opt-level = 2
20 [profile.bench]
21 opt-level = 2
22
23 # These options are controlled from our rustc wrapper script, so turn them off
24 # here and have them controlled elsewhere.
25 [profile.dev]
26 debug = false
27 debug-assertions = false
28 [profile.test]
29 debug = false
30 debug-assertions = false