]> git.lizzy.rs Git - rust.git/blob - src/Cargo.toml
4b84272df98126b69284165fbb2b7755d248739d
[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/rustdoc",
20   "tools/rls",
21   # FIXME(https://github.com/rust-lang/cargo/issues/4089): move these to exclude
22   "tools/rls/test_data/borrow_error",
23   "tools/rls/test_data/completion",
24   "tools/rls/test_data/find_all_refs",
25   "tools/rls/test_data/find_all_refs_no_cfg_test",
26   "tools/rls/test_data/goto_def",
27   "tools/rls/test_data/highlight",
28   "tools/rls/test_data/hover",
29   "tools/rls/test_data/rename",
30   "tools/rls/test_data/reformat",
31   "tools/rls/test_data/bin_lib_no_cfg_test",
32   "tools/rls/test_data/multiple_bins",
33   "tools/rls/test_data/bin_lib",
34   "tools/rls/test_data/reformat_with_range",
35 ]
36
37 # Curiously, compiletest will segfault if compiled with opt-level=3 on 64-bit
38 # MSVC when running the compile-fail test suite when a should-fail test panics.
39 # But hey if this is removed and it gets past the bots, sounds good to me.
40 [profile.release]
41 opt-level = 2
42 [profile.bench]
43 opt-level = 2
44
45 # These options are controlled from our rustc wrapper script, so turn them off
46 # here and have them controlled elsewhere.
47 [profile.dev]
48 debug = false
49 debug-assertions = false
50 [profile.test]
51 debug = false
52 debug-assertions = false
53
54 [replace]
55 "https://github.com/rust-lang/cargo#0.22.0" = { path = "tools/cargo" }