]> git.lizzy.rs Git - rust.git/blob - CONTRIBUTING.md
69ce9dae5aa9b939aadc9f6585ebe3d791746671
[rust.git] / CONTRIBUTING.md
1 # Contributing to Rust
2 [contributing-to-rust]: #contributing-to-rust
3
4 Thank you for your interest in contributing to Rust! There are many ways to
5 contribute, and we appreciate all of them. This document is a bit long, so here's
6 links to the major sections:
7
8 * [Feature Requests](#feature-requests)
9 * [Bug Reports](#bug-reports)
10 * [The Build System](#the-build-system)
11 * [Pull Requests](#pull-requests)
12 * [Writing Documentation](#writing-documentation)
13 * [Issue Triage](#issue-triage)
14 * [Out-of-tree Contributions](#out-of-tree-contributions)
15 * [Helpful Links and Information](#helpful-links-and-information)
16
17 If you have questions, please make a post on [internals.rust-lang.org][internals] or
18 hop on the [Rust Discord server][rust-discord] or [Rust Zulip server][rust-zulip].
19
20 As a reminder, all contributors are expected to follow our [Code of Conduct][coc].
21
22 The [rustc-dev-guide] is your friend! It describes how the compiler works and how
23 to contribute to it in more detail than this document.
24
25 If this is your first time contributing, the [walkthrough] chapter of the guide
26 can give you a good example of how a typical contribution would go.
27
28 [internals]: https://internals.rust-lang.org
29 [rust-discord]: http://discord.gg/rust-lang
30 [rust-zulip]: https://rust-lang.zulipchat.com
31 [coc]: https://www.rust-lang.org/conduct.html
32 [rustc-dev-guide]: https://rustc-dev-guide.rust-lang.org/
33 [walkthrough]: https://rustc-dev-guide.rust-lang.org/walkthrough.html
34
35 ## Feature Requests
36 [feature-requests]: #feature-requests
37
38 To request a change to the way the Rust language works, please head over
39 to the [RFCs repository](https://github.com/rust-lang/rfcs) and view the
40 [README](https://github.com/rust-lang/rfcs/blob/master/README.md)
41 for instructions.
42
43 ## Bug Reports
44 [bug-reports]: #bug-reports
45
46 While bugs are unfortunate, they're a reality in software. We can't fix what we
47 don't know about, so please report liberally. If you're not sure if something
48 is a bug or not, feel free to file a bug anyway.
49
50 **If you believe reporting your bug publicly represents a security risk to Rust users,
51 please follow our [instructions for reporting security vulnerabilities](https://www.rust-lang.org/policies/security)**.
52
53 If you're using the nightly channel, please check if the bug exists in the
54 latest toolchain before filing your bug. It might be fixed already.
55
56 If you have the chance, before reporting a bug, please [search existing
57 issues](https://github.com/rust-lang/rust/search?q=&type=Issues&utf8=%E2%9C%93),
58 as it's possible that someone else has already reported your error. This doesn't
59 always work, and sometimes it's hard to know what to search for, so consider this
60 extra credit. We won't mind if you accidentally file a duplicate report.
61
62 Similarly, to help others who encountered the bug find your issue,
63 consider filing an issue with a descriptive title, which contains information that might be unique to it.
64 This can be the language or compiler feature used, the conditions that trigger the bug,
65 or part of the error message if there is any.
66 An example could be: **"impossible case reached" on lifetime inference for impl Trait in return position**.
67
68 Opening an issue is as easy as following [this
69 link](https://github.com/rust-lang/rust/issues/new) and filling out the fields.
70 Here's a template that you can use to file a bug, though it's not necessary to
71 use it exactly:
72
73     <short summary of the bug>
74
75     I tried this code:
76
77     <code sample that causes the bug>
78
79     I expected to see this happen: <explanation>
80
81     Instead, this happened: <explanation>
82
83     ## Meta
84
85     `rustc --version --verbose`:
86
87     Backtrace:
88
89 All three components are important: what you did, what you expected, what
90 happened instead. Please include the output of `rustc --version --verbose`,
91 which includes important information about what platform you're on, what
92 version of Rust you're using, etc.
93
94 Sometimes, a backtrace is helpful, and so including that is nice. To get
95 a backtrace, set the `RUST_BACKTRACE` environment variable to a value
96 other than `0`. The easiest way
97 to do this is to invoke `rustc` like this:
98
99 ```bash
100 $ RUST_BACKTRACE=1 rustc ...
101 ```
102
103 ## The Build System
104
105 For info on how to configure and build the compiler, please see [this
106 chapter][rustcguidebuild] of the rustc-dev-guide. This chapter contains info for
107 contributions to the compiler and the standard library. It also lists some
108 really useful commands to the build system (`./x.py`), which could save you a
109 lot of time.
110
111 [rustcguidebuild]: https://rustc-dev-guide.rust-lang.org/building/how-to-build-and-run.html
112
113 ## Pull Requests
114 [pull-requests]: #pull-requests
115
116 Pull requests are the primary mechanism we use to change Rust. GitHub itself
117 has some [great documentation][about-pull-requests] on using the Pull Request feature.
118 We use the "fork and pull" model [described here][development-models], where
119 contributors push changes to their personal fork and create pull requests to
120 bring those changes into the source repository.
121
122 [about-pull-requests]: https://help.github.com/articles/about-pull-requests/
123 [development-models]: https://help.github.com/articles/about-collaborative-development-models/
124
125 Please make pull requests against the `master` branch.
126
127 Rust follows a no merge policy, meaning, when you encounter merge
128 conflicts you are expected to always rebase instead of merge.
129 E.g. always use rebase when bringing the latest changes from
130 the master branch to your feature branch.
131 Also, please make sure that fixup commits are squashed into other related
132 commits with meaningful commit messages.
133
134 GitHub allows [closing issues using keywords][closing-keywords]. This feature
135 should be used to keep the issue tracker tidy. However, it is generally preferred
136 to put the "closes #123" text in the PR description rather than the issue commit;
137 particularly during rebasing, citing the issue number in the commit can "spam"
138 the issue in question.
139
140 [closing-keywords]: https://help.github.com/en/articles/closing-issues-using-keywords
141
142 Please make sure your pull request is in compliance with Rust's style
143 guidelines by running
144
145     $ python x.py test tidy
146
147 Make this check before every pull request (and every new commit in a pull
148 request); you can add [git hooks](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks)
149 before every push to make sure you never forget to make this check.
150
151 All pull requests are reviewed by another person. We have a bot,
152 [@rust-highfive][rust-highfive], that will automatically assign a random person to review your
153 request.
154
155 If you want to request that a specific person reviews your pull request,
156 you can add an `r?` to the pull request description. For example, [Steve][steveklabnik] usually reviews
157 documentation changes. So if you were to make a documentation change, add
158
159     r? @steveklabnik
160
161 to the end of the pull request description, and [@rust-highfive][rust-highfive] will assign
162 [@steveklabnik][steveklabnik] instead of a random person. This is entirely optional.
163
164 After someone has reviewed your pull request, they will leave an annotation
165 on the pull request with an `r+`. It will look something like this:
166
167     @bors r+
168
169 This tells [@bors][bors], our lovable integration bot, that your pull request has
170 been approved. The PR then enters the [merge queue][merge-queue], where [@bors][bors]
171 will run all the tests on every platform we support. If it all works out,
172 [@bors][bors] will merge your code into `master` and close the pull request.
173
174 Depending on the scale of the change, you may see a slightly different form of `r+`:
175
176     @bors r+ rollup
177
178 The additional `rollup` tells [@bors][bors] that this change is eligible for to be
179 "rolled up". Changes that are rolled up are tested and merged at the same time, to
180 speed the process up. Typically only small changes that are expected not to conflict
181 with one another are rolled up.
182
183 [rust-highfive]: https://github.com/rust-highfive
184 [steveklabnik]: https://github.com/steveklabnik
185 [bors]: https://github.com/bors
186 [merge-queue]: https://buildbot2.rust-lang.org/homu/queue/rust
187
188 Speaking of tests, Rust has a comprehensive test suite. More information about
189 it can be found [here][rctd].
190
191 ### External Dependencies (subrepo)
192
193 As a developer to this repository, you don't have to treat the following external projects
194 differently from other crates that are directly in this repo:
195
196 * none so far, see https://github.com/rust-lang/rust/issues/70651 for more info
197
198 They are just regular files and directories. This is in contrast to `submodule` dependencies
199 (see below for those).
200
201 If you want to synchronize or otherwise work with subrepos, install the `git subrepo` command via
202 instructions found at https://github.com/ingydotnet/git-subrepo
203
204 #### Synchronizing a subrepo
205
206 There are two synchronization directions: `subrepo push` and `subrepo pull`. Both operations create
207 a synchronization commit in the rustc repo.
208 This commit is very important in order to make future synchronizations work.
209 Do not rebase this commit under any circumstances.
210 Prefer to merge in case of conflicts or redo the operation if you really need to rebase.
211
212 A `git subrepo push src/tools/clippy`
213 takes all the changes that
214 happened to the copy in this repo and creates commits on the remote repo that match the local
215 changes (so every local commit that touched the subrepo causes a commit on the remote repo).
216
217 A `git subrepo pull src/tools/clippy` takes all changes since the last `subrepo pull` from the clippy
218 repo and creates a single commit in the rustc repo with all the changes.
219
220 #### Creating a new subrepo dependency
221
222 If you want to create a new subrepo dependency from an existing repository, call (from this
223 repository's root directory!!)
224
225 ```
226 git subrepo clone https://github.com/rust-lang/rust-clippy.git src/tools/clippy
227 ```
228
229 This will create a new commit, which you may not rebase under any circumstances! Delete the commit
230 and redo the operation if you need to rebase.
231
232 Now you're done, the `src/tools/clippy` directory behaves as if clippy were part of the rustc
233 monorepo, so no one but you (or others that synchronize subrepos) needs to have `git subrepo`
234 installed.
235
236
237 ### External Dependencies (submodules)
238
239 Currently building Rust will also build the following external projects:
240
241 * [clippy](https://github.com/rust-lang/rust-clippy)
242 * [miri](https://github.com/rust-lang/miri)
243 * [rustfmt](https://github.com/rust-lang/rustfmt)
244 * [rls](https://github.com/rust-lang/rls/)
245
246 We allow breakage of these tools in the nightly channel. Maintainers of these
247 projects will be notified of the breakages and should fix them as soon as
248 possible.
249
250 After the external is fixed, one could add the changes with
251
252 ```sh
253 git add path/to/submodule
254 ```
255
256 outside the submodule.
257
258 In order to prepare your tool-fixing PR, you can run the build locally by doing
259 `./x.py build src/tools/TOOL`. If you will be editing the sources
260 there, you may wish to set `submodules = false` in the `config.toml`
261 to prevent `x.py` from resetting to the original branch.
262
263 Breakage is not allowed in the beta and stable channels, and must be addressed
264 before the PR is merged.
265
266 #### Breaking Tools Built With The Compiler
267
268 Rust's build system builds a number of tools that make use of the
269 internals of the compiler. This includes
270 [RLS](https://github.com/rust-lang/rls) and
271 [rustfmt](https://github.com/rust-lang/rustfmt). If these tools
272 break because of your changes, you may run into a sort of "chicken and egg"
273 problem. These tools rely on the latest compiler to be built so you can't update
274 them to reflect your changes to the compiler until those changes are merged into
275 the compiler. At the same time, you can't get your changes merged into the compiler
276 because the rust-lang/rust build won't pass until those tools build and pass their
277 tests.
278
279 That means that, in the default state, you can't update the compiler without first
280 fixing rustfmt, rls and the other tools that the compiler builds.
281
282 Luckily, a feature was [added to Rust's build](https://github.com/rust-lang/rust/issues/45861)
283 to make all of this easy to handle. The idea is that we allow these tools to be "broken",
284 so that the rust-lang/rust build passes without trying to build them, then land the change
285 in the compiler, wait for a nightly, and go update the tools that you broke. Once you're done
286 and the tools are working again, you go back in the compiler and update the tools
287 so they can be distributed again.
288
289 This should avoid a bunch of synchronization dances and is also much easier on contributors as
290 there's no need to block on rls/rustfmt/other tools changes going upstream.
291
292 Here are those same steps in detail:
293
294 1. (optional) First, if it doesn't exist already, create a `config.toml` by copying
295    `config.toml.example` in the root directory of the Rust repository.
296    Set `submodules = false` in the `[build]` section. This will prevent `x.py`
297    from resetting to the original branch after you make your changes. If you
298    need to [update any submodules to their latest versions](#updating-submodules),
299    see the section of this file about that for more information.
300 2. (optional) Run `./x.py test src/tools/rustfmt` (substituting the submodule
301    that broke for `rustfmt`). Fix any errors in the submodule (and possibly others).
302 3. (optional) Make commits for your changes and send them to upstream repositories as a PR.
303 4. (optional) Maintainers of these submodules will **not** merge the PR. The PR can't be
304    merged because CI will be broken. You'll want to write a message on the PR referencing
305    your change, and how the PR should be merged once your change makes it into a nightly.
306 5. Wait for your PR to merge.
307 6. Wait for a nightly
308 7. (optional) Help land your PR on the upstream repository now that your changes are in nightly.
309 8. (optional) Send a PR to rust-lang/rust updating the submodule.
310
311 #### Updating submodules
312
313 These instructions are specific to updating `rustfmt`, however they may apply
314 to the other submodules as well. Please help by improving these instructions
315 if you find any discrepancies or special cases that need to be addressed.
316
317 To update the `rustfmt` submodule, start by running the appropriate
318 [`git submodule` command](https://git-scm.com/book/en/v2/Git-Tools-Submodules).
319 For example, to update to the latest commit on the remote master branch,
320 you may want to run:
321 ```
322 git submodule update --remote src/tools/rustfmt
323 ```
324 If you run `./x.py build` now, and you are lucky, it may just work. If you see
325 an error message about patches that did not resolve to any crates, you will need
326 to complete a few more steps which are outlined with their rationale below.
327
328 *(This error may change in the future to include more information.)*
329 ```
330 error: failed to resolve patches for `https://github.com/rust-lang/rustfmt`
331
332 Caused by:
333   patch for `rustfmt-nightly` in `https://github.com/rust-lang/rustfmt` did not resolve to any crates
334 failed to run: ~/rust/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path ~/rust/src/bootstrap/Cargo.toml
335 ```
336
337 If you haven't used the `[patch]`
338 section of `Cargo.toml` before, there is [some relevant documentation about it
339 in the cargo docs](http://doc.crates.io/manifest.html#the-patch-section). In
340 addition to that, you should read the
341 [Overriding dependencies](http://doc.crates.io/specifying-dependencies.html#overriding-dependencies)
342 section of the documentation as well.
343
344 Specifically, the following [section in Overriding dependencies](http://doc.crates.io/specifying-dependencies.html#testing-a-bugfix) reveals what the problem is:
345
346 > Next up we need to ensure that our lock file is updated to use this new version of uuid so our project uses the locally checked out copy instead of one from crates.io. The way [patch] works is that it'll load the dependency at ../path/to/uuid and then whenever crates.io is queried for versions of uuid it'll also return the local version.
347 >
348 > This means that the version number of the local checkout is significant and will affect whether the patch is used. Our manifest declared uuid = "1.0" which means we'll only resolve to >= 1.0.0, < 2.0.0, and Cargo's greedy resolution algorithm also means that we'll resolve to the maximum version within that range. Typically this doesn't matter as the version of the git repository will already be greater or match the maximum version published on crates.io, but it's important to keep this in mind!
349
350 This says that when we updated the submodule, the version number in our
351 `src/tools/rustfmt/Cargo.toml` changed. The new version is different from
352 the version in `Cargo.lock`, so the build can no longer continue.
353
354 To resolve this, we need to update `Cargo.lock`. Luckily, cargo provides a
355 command to do this easily.
356
357 ```
358 $ cargo update -p rustfmt-nightly
359 ```
360
361 This should change the version listed in `Cargo.lock` to the new version you updated
362 the submodule to. Running `./x.py build` should work now.
363
364 ## Writing Documentation
365
366 Documentation improvements are very welcome. The source of `doc.rust-lang.org`
367 is located in `src/doc` in the tree, and standard API documentation is generated
368 from the source code itself. Documentation pull requests function in the same way
369 as other pull requests.
370
371 To find documentation-related issues, sort by the [T-doc label][tdoc].
372
373 [tdoc]: https://github.com/rust-lang/rust/issues?q=is%3Aopen%20is%3Aissue%20label%3AT-doc
374
375 You can find documentation style guidelines in [RFC 1574][rfc1574].
376
377 [rfc1574]: https://github.com/rust-lang/rfcs/blob/master/text/1574-more-api-documentation-conventions.md#appendix-a-full-conventions-text
378
379 In many cases, you don't need a full `./x.py doc`. You can use `rustdoc` directly
380 to check small fixes. For example, `rustdoc src/doc/reference.md` will render
381 reference to `doc/reference.html`. The CSS might be messed up, but you can
382 verify that the HTML is right.
383
384 Additionally, contributions to the [rustc-dev-guide] are always welcome. Contributions
385 can be made directly at [the
386 rust-lang/rustc-dev-guide](https://github.com/rust-lang/rustc-dev-guide) repo. The issue
387 tracker in that repo is also a great way to find things that need doing. There
388 are issues for beginners and advanced compiler devs alike!
389
390 ## Issue Triage
391
392 Sometimes, an issue will stay open, even though the bug has been fixed. And
393 sometimes, the original bug may go stale because something has changed in the
394 meantime.
395
396 It can be helpful to go through older bug reports and make sure that they are
397 still valid. Load up an older issue, double check that it's still true, and
398 leave a comment letting us know if it is or is not. The [least recently
399 updated sort][lru] is good for finding issues like this.
400
401 Contributors with sufficient permissions on the Rust repo can help by adding
402 labels to triage issues:
403
404 * Yellow, **A**-prefixed labels state which **area** of the project an issue
405   relates to.
406
407 * Magenta, **B**-prefixed labels identify bugs which are **blockers**.
408
409 * Dark blue, **beta-** labels track changes which need to be backported into
410   the beta branches.
411
412 * Light purple, **C**-prefixed labels represent the **category** of an issue.
413
414 * Green, **E**-prefixed labels explain the level of **experience** necessary
415   to fix the issue.
416
417 * The dark blue **final-comment-period** label marks bugs that are using the
418   RFC signoff functionality of [rfcbot] and are currently in the final
419   comment period.
420
421 * Red, **I**-prefixed labels indicate the **importance** of the issue. The
422   [I-nominated][inom] label indicates that an issue has been nominated for
423   prioritizing at the next triage meeting.
424
425 * The purple **metabug** label marks lists of bugs collected by other
426   categories.
427
428 * Purple gray, **O**-prefixed labels are the **operating system** or platform
429   that this issue is specific to.
430
431 * Orange, **P**-prefixed labels indicate a bug's **priority**. These labels
432   are only assigned during triage meetings, and replace the [I-nominated][inom]
433   label.
434
435 * The gray **proposed-final-comment-period** label marks bugs that are using
436   the RFC signoff functionality of [rfcbot] and are currently awaiting
437   signoff of all team members in order to enter the final comment period.
438
439 * Pink, **regression**-prefixed labels track regressions from stable to the
440   release channels.
441
442 * The light orange **relnotes** label marks issues that should be documented in
443   the release notes of the next release.
444
445 * Gray, **S**-prefixed labels are used for tracking the **status** of pull
446   requests.
447
448 * Blue, **T**-prefixed bugs denote which **team** the issue belongs to.
449
450 If you're looking for somewhere to start, check out the [E-easy][eeasy] tag.
451
452 [inom]: https://github.com/rust-lang/rust/issues?q=is%3Aopen+is%3Aissue+label%3AI-nominated
453 [eeasy]: https://github.com/rust-lang/rust/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy
454 [lru]: https://github.com/rust-lang/rust/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-asc
455 [rfcbot]: https://github.com/anp/rfcbot-rs/
456
457 ## Out-of-tree Contributions
458
459 There are a number of other ways to contribute to Rust that don't deal with
460 this repository.
461
462 Answer questions in the _Get Help!_ channels from the [Rust Discord server][rust-discord], on [users.rust-lang.org][users],
463 or on [StackOverflow][so].
464
465 Participate in the [RFC process](https://github.com/rust-lang/rfcs).
466
467 Find a [requested community library][community-library], build it, and publish
468 it to [Crates.io](http://crates.io). Easier said than done, but very, very
469 valuable!
470
471 [rust-discord]: https://discord.gg/rust-lang
472 [users]: https://users.rust-lang.org/
473 [so]: http://stackoverflow.com/questions/tagged/rust
474 [community-library]: https://github.com/rust-lang/rfcs/labels/A-community-library
475
476 ## Helpful Links and Information
477
478 For people new to Rust, and just starting to contribute, or even for
479 more seasoned developers, some useful places to look for information
480 are:
481
482 * The [rustc dev guide] contains information about how various parts of the compiler work and how to contribute to the compiler
483 * [Rust Forge][rustforge] contains additional documentation, including write-ups of how to achieve common tasks
484 * The [Rust Internals forum][rif], a place to ask questions and
485   discuss Rust's internals
486 * The [generated documentation for rust's compiler][gdfrustc]
487 * The [rust reference][rr], even though it doesn't specifically talk about Rust's internals, it's a great resource nonetheless
488 * Although out of date, [Tom Lee's great blog article][tlgba] is very helpful
489 * [rustaceans.org][ro] is helpful, but mostly dedicated to IRC
490 * The [Rust Compiler Testing Docs][rctd]
491 * For [@bors][bors], [this cheat sheet][cheatsheet] is helpful
492 (though you'll need to replace `@homu` with `@bors` in any commands)
493 * **Google!** ([search only in Rust Documentation][gsearchdocs] to find types, traits, etc. quickly)
494 * Don't be afraid to ask! The Rust community is friendly and helpful.
495
496 [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/about-this-guide.html
497 [gdfrustc]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/
498 [gsearchdocs]: https://www.google.com/search?q=site:doc.rust-lang.org+your+query+here
499 [rif]: http://internals.rust-lang.org
500 [rr]: https://doc.rust-lang.org/book/README.html
501 [rustforge]: https://forge.rust-lang.org/
502 [tlgba]: http://tomlee.co/2014/04/a-more-detailed-tour-of-the-rust-compiler/
503 [ro]: http://www.rustaceans.org/
504 [rctd]: https://rustc-dev-guide.rust-lang.org/tests/intro.html
505 [cheatsheet]: https://buildbot2.rust-lang.org/homu/