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