]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Add missiong variants in match binding
[rust.git] / Cargo.toml
1 [workspace]
2 members = [
3   "src/bootstrap",
4   "compiler/rustc",
5   "library/std",
6   "library/test",
7   "src/tools/cargotest",
8   "src/tools/clippy",
9   "src/tools/compiletest",
10   "src/tools/error_index_generator",
11   "src/tools/linkchecker",
12   "src/tools/lint-docs",
13   "src/tools/rustbook",
14   "src/tools/unstable-book-gen",
15   "src/tools/tidy",
16   "src/tools/tier-check",
17   "src/tools/build-manifest",
18   "src/tools/remote-test-client",
19   "src/tools/remote-test-server",
20   "src/tools/rust-installer",
21   "src/tools/rust-demangler",
22   "src/tools/cargo",
23   "src/tools/cargo/crates/credential/cargo-credential-1password",
24   "src/tools/cargo/crates/credential/cargo-credential-macos-keychain",
25   "src/tools/cargo/crates/credential/cargo-credential-wincred",
26   "src/tools/rustdoc",
27   "src/tools/rls",
28   "src/tools/rustfmt",
29   "src/tools/miri",
30   "src/tools/miri/cargo-miri",
31   "src/tools/rustdoc-themes",
32   "src/tools/unicode-table-generator",
33   "src/tools/expand-yaml-anchors",
34   "src/tools/jsondocck",
35 ]
36
37 exclude = [
38   "build",
39   "compiler/rustc_codegen_cranelift",
40   # HACK(eddyb) This hardcodes the fact that our CI uses `/checkout/obj`.
41   "obj",
42   # The `x` binary is a thin wrapper that calls `x.py`, which initializes
43   # submodules, before which workspace members cannot be invoked because
44   # not all `Cargo.toml` files are available, so we exclude the `x` binary,
45   # so it can be invoked before the current checkout is set up.
46   "src/tools/x",
47 ]
48
49 [profile.release.package.compiler_builtins]
50 # The compiler-builtins crate cannot reference libcore, and it's own CI will
51 # verify that this is the case. This requires, however, that the crate is built
52 # without overflow checks and debug assertions. Forcefully disable debug
53 # assertions and overflow checks here which should ensure that even if these
54 # assertions are enabled for libstd we won't enable then for compiler_builtins
55 # which should ensure we still link everything correctly.
56 debug-assertions = false
57 overflow-checks = false
58
59 # For compiler-builtins we always use a high number of codegen units.
60 # The goal here is to place every single intrinsic into its own object
61 # file to avoid symbol clashes with the system libgcc if possible. Note
62 # that this number doesn't actually produce this many object files, we
63 # just don't create more than this number of object files.
64 #
65 # It's a bit of a bummer that we have to pass this here, unfortunately.
66 # Ideally this would be specified through an env var to Cargo so Cargo
67 # knows how many CGUs are for this specific crate, but for now
68 # per-crate configuration isn't specifiable in the environment.
69 codegen-units = 10000
70
71 # These dependencies of the standard library implement symbolication for
72 # backtraces on most platforms. Their debuginfo causes both linking to be slower
73 # (more data to chew through) and binaries to be larger without really all that
74 # much benefit. This section turns them all to down to have no debuginfo which
75 # helps to improve link times a little bit.
76 [profile.release.package]
77 addr2line.debug = 0
78 adler.debug = 0
79 gimli.debug = 0
80 miniz_oxide.debug = 0
81 object.debug = 0
82
83 # We want the RLS to use the version of Cargo that we've got vendored in this
84 # repository to ensure that the same exact version of Cargo is used by both the
85 # RLS and the Cargo binary itself. The RLS depends on Cargo as a git repository
86 # so we use a `[patch]` here to override the github repository with our local
87 # vendored copy.
88 [patch."https://github.com/rust-lang/cargo"]
89 cargo = { path = "src/tools/cargo" }
90
91 [patch."https://github.com/rust-lang/rustfmt"]
92 # Similar to Cargo above we want the RLS to use a vendored version of `rustfmt`
93 # that we're shipping as well (to ensure that the rustfmt in RLS and the
94 # `rustfmt` executable are the same exact version).
95 rustfmt-nightly = { path = "src/tools/rustfmt" }
96
97 [patch.crates-io]
98 # See comments in `src/tools/rustc-workspace-hack/README.md` for what's going on
99 # here
100 rustc-workspace-hack = { path = 'src/tools/rustc-workspace-hack' }
101
102 # See comments in `library/rustc-std-workspace-core/README.md` for what's going on
103 # here
104 rustc-std-workspace-core = { path = 'library/rustc-std-workspace-core' }
105 rustc-std-workspace-alloc = { path = 'library/rustc-std-workspace-alloc' }
106 rustc-std-workspace-std = { path = 'library/rustc-std-workspace-std' }
107
108 # This crate's integration with libstd is a bit wonky, so we use a submodule
109 # instead of a crates.io dependency. Make sure everything else in the repo is
110 # also using the submodule, however, so we can avoid duplicate copies of the
111 # source code for this crate.
112 backtrace = { path = "library/backtrace" }
113
114 [patch."https://github.com/rust-lang/rust-clippy"]
115 clippy_lints = { path = "src/tools/clippy/clippy_lints" }