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