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