]> git.lizzy.rs Git - rust.git/blob - src/Cargo.toml
rustdoc: pretty-print Unevaluated expressions in types.
[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   "tools/rls/test_data/find_impls",
36   "tools/rls/test_data/infer_bin",
37   "tools/rls/test_data/infer_custom_bin",
38   "tools/rls/test_data/infer_lib",
39   "tools/rls/test_data/omit_init_build",
40 ]
41
42 # Curiously, compiletest will segfault if compiled with opt-level=3 on 64-bit
43 # MSVC when running the compile-fail test suite when a should-fail test panics.
44 # But hey if this is removed and it gets past the bots, sounds good to me.
45 [profile.release]
46 opt-level = 2
47 [profile.bench]
48 opt-level = 2
49
50 # These options are controlled from our rustc wrapper script, so turn them off
51 # here and have them controlled elsewhere.
52 [profile.dev]
53 debug = false
54 debug-assertions = false
55 [profile.test]
56 debug = false
57 debug-assertions = false
58
59 [patch.'https://github.com/rust-lang/cargo']
60 cargo = { path = "tools/cargo" }