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