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