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