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