]> git.lizzy.rs Git - rust.git/blob - src/Cargo.toml
Auto merge of #45761 - gnzlbg:xsave_feature, r=alexcrichton
[rust.git] / src / Cargo.toml
1 [workspace]
2 members = [
3   "bootstrap",
4   "rustc",
5   "libstd",
6   "libtest",
7   "tools/cargotest",
8   "tools/clippy",
9   "tools/compiletest",
10   "tools/error_index_generator",
11   "tools/linkchecker",
12   "tools/rustbook",
13   "tools/unstable-book-gen",
14   "tools/tidy",
15   "tools/build-manifest",
16   "tools/remote-test-client",
17   "tools/remote-test-server",
18   "tools/rust-installer",
19   "tools/cargo",
20   "tools/rustdoc",
21   "tools/rls",
22   "tools/rustfmt",
23   # FIXME(https://github.com/rust-lang/cargo/issues/4089): move these to exclude
24   "tools/rls/test_data/borrow_error",
25   "tools/rls/test_data/common",
26   "tools/rls/test_data/features",
27   "tools/rls/test_data/find_all_refs_no_cfg_test",
28   "tools/rls/test_data/reformat",
29   "tools/rls/test_data/multiple_bins",
30   "tools/rls/test_data/bin_lib",
31   "tools/rls/test_data/reformat_with_range",
32   "tools/rls/test_data/find_impls",
33   "tools/rls/test_data/infer_bin",
34   "tools/rls/test_data/infer_custom_bin",
35   "tools/rls/test_data/infer_lib",
36   "tools/rls/test_data/workspace_symbol",
37 ]
38
39 # Curiously, compiletest will segfault if compiled with opt-level=3 on 64-bit
40 # MSVC when running the compile-fail test suite when a should-fail test panics.
41 # But hey if this is removed and it gets past the bots, sounds good to me.
42 [profile.release]
43 opt-level = 2
44 [profile.bench]
45 opt-level = 2
46
47 # These options are controlled from our rustc wrapper script, so turn them off
48 # here and have them controlled elsewhere.
49 [profile.dev]
50 debug = false
51 debug-assertions = false
52 [profile.test]
53 debug = false
54 debug-assertions = false
55
56 [patch."https://github.com/rust-lang/cargo"]
57 cargo = { path = "tools/cargo" }
58
59 [patch.crates-io]
60 rustfmt-nightly = { path = "tools/rustfmt" }