]> git.lizzy.rs Git - rust.git/blob - src/Cargo.toml
ICH: Handle case of removed FileMaps.
[rust.git] / src / Cargo.toml
1 [workspace]
2 members = [
3   "bootstrap",
4   "rustc",
5   "libstd",
6   "libtest",
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/remote-test-client",
15   "tools/remote-test-server",
16 ]
17
18 # These projects have their own Cargo.lock
19 exclude = [
20   "tools/cargo",
21   "tools/rls",
22 ]
23
24 # Curiously, compiletest will segfault if compiled with opt-level=3 on 64-bit
25 # MSVC when running the compile-fail test suite when a should-fail test panics.
26 # But hey if this is removed and it gets past the bots, sounds good to me.
27 [profile.release]
28 opt-level = 2
29 [profile.bench]
30 opt-level = 2
31
32 # These options are controlled from our rustc wrapper script, so turn them off
33 # here and have them controlled elsewhere.
34 [profile.dev]
35 debug = false
36 debug-assertions = false
37 [profile.test]
38 debug = false
39 debug-assertions = false