]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Do not clobber RUSTDOCFLAGS
[rust.git] / Cargo.toml
1 [workspace]
2 members = [
3   "src/bootstrap",
4   "src/rustc",
5   "src/libstd",
6   "src/libtest",
7   "src/librustc_codegen_llvm",
8   "src/tools/cargotest",
9   "src/tools/clippy",
10   "src/tools/compiletest",
11   "src/tools/error_index_generator",
12   "src/tools/linkchecker",
13   "src/tools/rustbook",
14   "src/tools/unstable-book-gen",
15   "src/tools/tidy",
16   "src/tools/build-manifest",
17   "src/tools/remote-test-client",
18   "src/tools/remote-test-server",
19   "src/tools/rust-installer",
20   "src/tools/rust-demangler",
21   "src/tools/cargo",
22   "src/tools/rustdoc",
23   "src/tools/rls",
24   "src/tools/rustfmt",
25   "src/tools/miri",
26   "src/tools/miri/cargo-miri",
27   "src/tools/rustdoc-themes",
28   "src/tools/unicode-table-generator",
29   "src/tools/expand-yaml-anchors",
30 ]
31 exclude = [
32   "build",
33   # HACK(eddyb) This hardcodes the fact that our CI uses `/checkout/obj`.
34   "obj",
35 ]
36
37 [profile.release.package.compiler_builtins]
38 # The compiler-builtins crate cannot reference libcore, and it's own CI will
39 # verify that this is the case. This requires, however, that the crate is built
40 # without overflow checks and debug assertions. Forcefully disable debug
41 # assertions and overflow checks here which should ensure that even if these
42 # assertions are enabled for libstd we won't enable then for compiler_builtins
43 # which should ensure we still link everything correctly.
44 debug-assertions = false
45 overflow-checks = false
46
47 # For compiler-builtins we always use a high number of codegen units.
48 # The goal here is to place every single intrinsic into its own object
49 # file to avoid symbol clashes with the system libgcc if possible. Note
50 # that this number doesn't actually produce this many object files, we
51 # just don't create more than this number of object files.
52 #
53 # It's a bit of a bummer that we have to pass this here, unfortunately.
54 # Ideally this would be specified through an env var to Cargo so Cargo
55 # knows how many CGUs are for this specific crate, but for now
56 # per-crate configuration isn't specifiable in the environment.
57 codegen-units = 10000
58
59 # We want the RLS to use the version of Cargo that we've got vendored in this
60 # repository to ensure that the same exact version of Cargo is used by both the
61 # RLS and the Cargo binary itself. The RLS depends on Cargo as a git repository
62 # so we use a `[patch]` here to override the github repository with our local
63 # vendored copy.
64 [patch."https://github.com/rust-lang/cargo"]
65 cargo = { path = "src/tools/cargo" }
66
67 [patch.crates-io]
68 # Similar to Cargo above we want the RLS to use a vendored version of `rustfmt`
69 # that we're shipping as well (to ensure that the rustfmt in RLS and the
70 # `rustfmt` executable are the same exact version).
71 rustfmt-nightly = { path = "src/tools/rustfmt" }
72
73 # See comments in `src/tools/rustc-workspace-hack/README.md` for what's going on
74 # here
75 rustc-workspace-hack = { path = 'src/tools/rustc-workspace-hack' }
76
77 # See comments in `tools/rustc-std-workspace-core/README.md` for what's going on
78 # here
79 rustc-std-workspace-core = { path = 'src/tools/rustc-std-workspace-core' }
80 rustc-std-workspace-alloc = { path = 'src/tools/rustc-std-workspace-alloc' }
81 rustc-std-workspace-std = { path = 'src/tools/rustc-std-workspace-std' }
82
83 # This crate's integration with libstd is a bit wonky, so we use a submodule
84 # instead of a crates.io dependency. Make sure everything else in the repo is
85 # also using the submodule, however, so we can avoid duplicate copies of the
86 # source code for this crate.
87 backtrace = { path = "src/backtrace" }
88
89 [patch."https://github.com/rust-lang/rust-clippy"]
90 clippy_lints = { path = "src/tools/clippy/clippy_lints" }