]> git.lizzy.rs Git - rust.git/blob - src/Cargo.toml
Auto merge of #44999 - pnkfelix:mir-borrowck-fix-assert-left-right, r=nikomatsakis
[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   "tools/rustfmt",
22   # FIXME(https://github.com/rust-lang/cargo/issues/4089): move these to exclude
23   "tools/rls/test_data/borrow_error",
24   "tools/rls/test_data/completion",
25   "tools/rls/test_data/find_all_refs",
26   "tools/rls/test_data/find_all_refs_no_cfg_test",
27   "tools/rls/test_data/goto_def",
28   "tools/rls/test_data/highlight",
29   "tools/rls/test_data/hover",
30   "tools/rls/test_data/rename",
31   "tools/rls/test_data/reformat",
32   "tools/rls/test_data/bin_lib_no_cfg_test",
33   "tools/rls/test_data/multiple_bins",
34   "tools/rls/test_data/bin_lib",
35   "tools/rls/test_data/reformat_with_range",
36   "tools/rls/test_data/find_impls",
37   "tools/rls/test_data/infer_bin",
38   "tools/rls/test_data/infer_custom_bin",
39   "tools/rls/test_data/infer_lib",
40   "tools/rls/test_data/omit_init_build",
41   "tools/rls/test_data/unicødë",
42   "tools/rls/test_data/workspace_symbol",
43 ]
44
45 # Curiously, compiletest will segfault if compiled with opt-level=3 on 64-bit
46 # MSVC when running the compile-fail test suite when a should-fail test panics.
47 # But hey if this is removed and it gets past the bots, sounds good to me.
48 [profile.release]
49 opt-level = 2
50 [profile.bench]
51 opt-level = 2
52
53 # These options are controlled from our rustc wrapper script, so turn them off
54 # here and have them controlled elsewhere.
55 [profile.dev]
56 debug = false
57 debug-assertions = false
58 [profile.test]
59 debug = false
60 debug-assertions = false
61
62 [patch."https://github.com/rust-lang/cargo"]
63 cargo = { path = "tools/cargo" }
64
65 [patch.crates-io]
66 rustfmt-nightly = { path = "tools/rustfmt" }