2015-02-13 17:26:44 +00:00
|
|
|
|
# Contributing to Rust
|
2013-10-21 19:10:57 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
Thank you for your interest in contributing to Rust! There are many ways to
|
|
|
|
|
contribute, and we appreciate all of them. This document is a bit long, so here's
|
|
|
|
|
links to the major sections:
|
2013-10-21 19:10:57 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
* [Feature Requests](#feature-requests)
|
|
|
|
|
* [Bug Reports](#bug-reports)
|
2016-01-25 14:07:10 +00:00
|
|
|
|
* [The Build System](#the-build-system)
|
2015-02-13 17:26:44 +00:00
|
|
|
|
* [Pull Requests](#pull-requests)
|
|
|
|
|
* [Writing Documentation](#writing-documentation)
|
|
|
|
|
* [Issue Triage](#issue-triage)
|
|
|
|
|
* [Out-of-tree Contributions](#out-of-tree-contributions)
|
2015-09-11 23:21:11 +00:00
|
|
|
|
* [Helpful Links and Information](#helpful-links-and-information)
|
2013-10-21 19:10:57 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
If you have questions, please make a post on [internals.rust-lang.org][internals] or
|
|
|
|
|
hop on [#rust-internals][pound-rust-internals].
|
2014-09-22 00:46:24 +00:00
|
|
|
|
|
2015-02-19 03:53:00 +00:00
|
|
|
|
As a reminder, all contributors are expected to follow our [Code of Conduct][coc].
|
2014-09-22 00:46:24 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
[pound-rust-internals]: http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-internals
|
2015-08-09 21:15:05 +00:00
|
|
|
|
[internals]: https://internals.rust-lang.org
|
|
|
|
|
[coc]: https://www.rust-lang.org/conduct.html
|
2012-12-27 22:58:45 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
## Feature Requests
|
2012-12-27 22:58:45 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
To request a change to the way that the Rust language works, please open an
|
|
|
|
|
issue in the [RFCs repository](https://github.com/rust-lang/rfcs/issues/new)
|
|
|
|
|
rather than this one. New features and other significant language changes
|
|
|
|
|
must go through the RFC process.
|
2012-12-27 22:58:45 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
## Bug Reports
|
2012-12-27 22:58:45 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
While bugs are unfortunate, they're a reality in software. We can't fix what we
|
|
|
|
|
don't know about, so please report liberally. If you're not sure if something
|
|
|
|
|
is a bug or not, feel free to file a bug anyway.
|
2012-12-27 22:58:45 +00:00
|
|
|
|
|
2015-11-06 22:05:19 +00:00
|
|
|
|
**If you believe reporting your bug publicly represents a security risk to Rust users,
|
|
|
|
|
please follow our [instructions for reporting security vulnerabilities](https://www.rust-lang.org/security.html)**.
|
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
If you have the chance, before reporting a bug, please [search existing
|
|
|
|
|
issues](https://github.com/rust-lang/rust/search?q=&type=Issues&utf8=%E2%9C%93),
|
|
|
|
|
as it's possible that someone else has already reported your error. This doesn't
|
|
|
|
|
always work, and sometimes it's hard to know what to search for, so consider this
|
|
|
|
|
extra credit. We won't mind if you accidentally file a duplicate report.
|
2013-06-05 14:04:39 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
Opening an issue is as easy as following [this
|
|
|
|
|
link](https://github.com/rust-lang/rust/issues/new) and filling out the fields.
|
|
|
|
|
Here's a template that you can use to file a bug, though it's not necessary to
|
|
|
|
|
use it exactly:
|
2013-01-29 19:07:02 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
<short summary of the bug>
|
|
|
|
|
|
|
|
|
|
I tried this code:
|
|
|
|
|
|
|
|
|
|
<code sample that causes the bug>
|
|
|
|
|
|
|
|
|
|
I expected to see this happen: <explanation>
|
|
|
|
|
|
|
|
|
|
Instead, this happened: <explanation>
|
|
|
|
|
|
|
|
|
|
## Meta
|
|
|
|
|
|
|
|
|
|
`rustc --version --verbose`:
|
|
|
|
|
|
|
|
|
|
Backtrace:
|
|
|
|
|
|
|
|
|
|
All three components are important: what you did, what you expected, what
|
|
|
|
|
happened instead. Please include the output of `rustc --version --verbose`,
|
|
|
|
|
which includes important information about what platform you're on, what
|
|
|
|
|
version of Rust you're using, etc.
|
|
|
|
|
|
|
|
|
|
Sometimes, a backtrace is helpful, and so including that is nice. To get
|
2016-03-28 12:41:55 +00:00
|
|
|
|
a backtrace, set the `RUST_BACKTRACE` environment variable to a value
|
|
|
|
|
other than `0`. The easiest way
|
2015-02-13 17:26:44 +00:00
|
|
|
|
to do this is to invoke `rustc` like this:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
$ RUST_BACKTRACE=1 rustc ...
|
2013-01-29 19:07:02 +00:00
|
|
|
|
```
|
|
|
|
|
|
2016-01-25 14:07:10 +00:00
|
|
|
|
## The Build System
|
|
|
|
|
|
2016-01-26 14:41:29 +00:00
|
|
|
|
Rust's build system allows you to bootstrap the compiler, run tests &
|
|
|
|
|
benchmarks, generate documentation, install a fresh build of Rust, and more.
|
|
|
|
|
It's your best friend when working on Rust, allowing you to compile & test
|
|
|
|
|
your contributions before submission.
|
|
|
|
|
|
2016-11-16 20:31:19 +00:00
|
|
|
|
The build system lives in [the `src/bootstrap` directory][bootstrap] in the
|
|
|
|
|
project root. Our build system is itself written in Rust and is based on Cargo
|
|
|
|
|
to actually build all the compiler's crates. If you have questions on the build
|
|
|
|
|
system internals, try asking in [`#rust-internals`][pound-rust-internals].
|
2016-01-25 14:07:10 +00:00
|
|
|
|
|
2016-11-16 20:31:19 +00:00
|
|
|
|
[bootstrap]: https://github.com/rust-lang/rust/tree/master/src/bootstrap/
|
|
|
|
|
|
2016-01-25 14:07:10 +00:00
|
|
|
|
### Configuration
|
|
|
|
|
|
|
|
|
|
Before you can start building the compiler you need to configure the build for
|
|
|
|
|
your system. In most cases, that will just mean using the defaults provided
|
2017-02-23 10:45:30 +00:00
|
|
|
|
for Rust.
|
2016-01-25 14:07:10 +00:00
|
|
|
|
|
2017-02-23 10:45:30 +00:00
|
|
|
|
To change configuration, you must copy the file `src/bootstrap/config.toml.example`
|
|
|
|
|
to `config.toml` in the directory from which you will be running the build, and
|
|
|
|
|
change the settings provided.
|
|
|
|
|
|
|
|
|
|
There are large number of options provided in this config file that will alter the
|
|
|
|
|
configuration used in the build process. Some options to note:
|
2016-01-25 14:07:10 +00:00
|
|
|
|
|
2017-02-23 10:45:30 +00:00
|
|
|
|
#### `[llvm]`:
|
|
|
|
|
- `ccache = true` - Use ccache when building llvm
|
2016-01-25 14:07:10 +00:00
|
|
|
|
|
2017-02-23 10:45:30 +00:00
|
|
|
|
#### `[build]`:
|
|
|
|
|
- `compiler-docs = true` - Build compiler documentation
|
2016-01-25 14:07:10 +00:00
|
|
|
|
|
2017-02-23 10:45:30 +00:00
|
|
|
|
#### `[rust]`:
|
|
|
|
|
- `debuginfo = true` - Build a compiler with debuginfo
|
|
|
|
|
- `optimize = false` - Disable optimizations to speed up compilation of stage1 rust
|
|
|
|
|
|
|
|
|
|
For more options, the `config.toml` file contains commented out defaults, with
|
|
|
|
|
descriptions of what each option will do.
|
|
|
|
|
|
|
|
|
|
Note: Previously the `./configure` script was used to configure this
|
|
|
|
|
project. It can still be used, but it's recommended to use a `config.toml`
|
|
|
|
|
file. If you still have a `config.mk` file in your directory - from
|
|
|
|
|
`./configure` - you may need to delete it for `config.toml` to work.
|
2016-01-25 14:07:10 +00:00
|
|
|
|
|
2016-11-16 20:31:19 +00:00
|
|
|
|
### Building
|
|
|
|
|
|
2017-02-23 10:45:30 +00:00
|
|
|
|
The build system uses the `x.py` script to control the build process. This script
|
|
|
|
|
is used to build, test, and document various parts of the compiler. You can
|
|
|
|
|
execute it as:
|
2016-11-16 20:31:19 +00:00
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
python x.py build
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
On some systems you can also use the shorter version:
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
./x.py build
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
To learn more about the driver and top-level targets, you can execute:
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
python x.py --help
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The general format for the driver script is:
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
python x.py <command> [<directory>]
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Some example commands are `build`, `test`, and `doc`. These will build, test,
|
|
|
|
|
and document the specified directory. The second argument, `<directory>`, is
|
|
|
|
|
optional and defaults to working over the entire compiler. If specified,
|
|
|
|
|
however, only that specific directory will be built. For example:
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
# build the entire compiler
|
|
|
|
|
python x.py build
|
|
|
|
|
|
|
|
|
|
# build all documentation
|
|
|
|
|
python x.py doc
|
|
|
|
|
|
|
|
|
|
# run all test suites
|
|
|
|
|
python x.py test
|
|
|
|
|
|
|
|
|
|
# build only the standard library
|
|
|
|
|
python x.py build src/libstd
|
|
|
|
|
|
|
|
|
|
# test only one particular test suite
|
|
|
|
|
python x.py test src/test/rustdoc
|
|
|
|
|
|
|
|
|
|
# build only the stage0 libcore library
|
|
|
|
|
python x.py build src/libcore --stage 0
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
You can explore the build system throught the various `--help` pages for each
|
|
|
|
|
subcommand. For example to learn more about a command you can run:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
python x.py build --help
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
To learn about all possible rules you can execute, run:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
python x.py build --help --verbose
|
|
|
|
|
```
|
|
|
|
|
|
2017-02-23 10:45:30 +00:00
|
|
|
|
Note: Previously `./configure` and `make` were used to build this project.
|
|
|
|
|
They are still available, but `x.py` is the recommended build system.
|
|
|
|
|
|
2016-11-16 20:31:19 +00:00
|
|
|
|
### Useful commands
|
|
|
|
|
|
|
|
|
|
Some common invocations of `x.py` are:
|
|
|
|
|
|
|
|
|
|
- `x.py build --help` - show the help message and explain the subcommand
|
|
|
|
|
- `x.py build src/libtest --stage 1` - build up to (and including) the first
|
|
|
|
|
stage. For most cases we don't need to build the stage2 compiler, so we can
|
|
|
|
|
save time by not building it. The stage1 compiler is a fully functioning
|
|
|
|
|
compiler and (probably) will be enough to determine if your change works as
|
|
|
|
|
expected.
|
|
|
|
|
- `x.py build src/rustc --stage 1` - This will build just rustc, without libstd.
|
|
|
|
|
This is the fastest way to recompile after you changed only rustc source code.
|
|
|
|
|
Note however that the resulting rustc binary won't have a stdlib to link
|
|
|
|
|
against by default. You can build libstd once with `x.py build src/libstd`,
|
2017-02-19 22:30:50 +00:00
|
|
|
|
but it is only guaranteed to work if recompiled, so if there are any issues
|
2016-11-16 20:31:19 +00:00
|
|
|
|
recompile it.
|
|
|
|
|
- `x.py test` - build the full compiler & run all tests (takes a while). This
|
2016-01-25 14:07:10 +00:00
|
|
|
|
is what gets run by the continuous integration system against your pull
|
|
|
|
|
request. You should run this before submitting to make sure your tests pass
|
|
|
|
|
& everything builds in the correct manner.
|
2016-11-16 20:31:19 +00:00
|
|
|
|
- `x.py test src/libstd --stage 1` - test the standard library without
|
|
|
|
|
recompiling stage 2.
|
2016-12-13 16:31:48 +00:00
|
|
|
|
- `x.py test src/test/run-pass --test-args TESTNAME` - Run a matching set of
|
|
|
|
|
tests.
|
2016-03-13 19:57:24 +00:00
|
|
|
|
- `TESTNAME` should be a substring of the tests to match against e.g. it could
|
|
|
|
|
be the fully qualified test name, or just a part of it.
|
2016-02-01 06:04:39 +00:00
|
|
|
|
`TESTNAME=collections::hash::map::test_map::test_capacity_not_less_than_len`
|
2016-02-01 23:57:24 +00:00
|
|
|
|
or `TESTNAME=test_capacity_not_less_than_len`.
|
2016-12-13 16:31:48 +00:00
|
|
|
|
- `x.py test src/test/run-pass --stage 1 --test-args <substring-of-test-name>` -
|
2016-11-16 20:31:19 +00:00
|
|
|
|
Run a single rpass test with the stage1 compiler (this will be quicker than
|
|
|
|
|
running the command above as we only build the stage1 compiler, not the entire
|
|
|
|
|
thing). You can also leave off the directory argument to run all stage1 test
|
|
|
|
|
types.
|
|
|
|
|
- `x.py test src/libcore --stage 1` - Run stage1 tests in `libcore`.
|
|
|
|
|
- `x.py test src/tools/tidy` - Check that the source code is in compliance with
|
|
|
|
|
Rust's style guidelines. There is no official document describing Rust's full
|
|
|
|
|
guidelines as of yet, but basic rules like 4 spaces for indentation and no
|
|
|
|
|
more than 99 characters in a single line should be kept in mind when writing
|
|
|
|
|
code.
|
2016-01-25 14:07:10 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
## Pull Requests
|
2015-01-02 23:41:47 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
Pull requests are the primary mechanism we use to change Rust. GitHub itself
|
|
|
|
|
has some [great documentation][pull-requests] on using the Pull Request
|
|
|
|
|
feature. We use the 'fork and pull' model described there.
|
2015-01-02 23:41:47 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
[pull-requests]: https://help.github.com/articles/using-pull-requests/
|
|
|
|
|
|
|
|
|
|
Please make pull requests against the `master` branch.
|
|
|
|
|
|
2017-02-23 10:45:30 +00:00
|
|
|
|
Compiling all of `./x.py test` can take a while. When testing your pull request,
|
|
|
|
|
consider using one of the more specialized `./x.py` targets to cut down on the
|
2015-07-06 18:46:21 +00:00
|
|
|
|
amount of time you have to wait. You need to have built the compiler at least
|
|
|
|
|
once before running these will work, but that’s only one full build rather than
|
|
|
|
|
one each time.
|
|
|
|
|
|
2016-11-16 20:31:19 +00:00
|
|
|
|
$ python x.py test --stage 1
|
2015-07-06 18:46:21 +00:00
|
|
|
|
|
|
|
|
|
is one such example, which builds just `rustc`, and then runs the tests. If
|
|
|
|
|
you’re adding something to the standard library, try
|
|
|
|
|
|
2016-11-16 20:31:19 +00:00
|
|
|
|
$ python x.py test src/libstd --stage 1
|
2015-07-06 18:46:21 +00:00
|
|
|
|
|
2016-09-03 10:41:02 +00:00
|
|
|
|
Please make sure your pull request is in compliance with Rust's style
|
|
|
|
|
guidelines by running
|
|
|
|
|
|
2016-11-16 20:31:19 +00:00
|
|
|
|
$ python x.py test src/tools/tidy
|
2016-09-03 10:41:02 +00:00
|
|
|
|
|
|
|
|
|
Make this check before every pull request (and every new commit in a pull
|
|
|
|
|
request) ; you can add [git hooks](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks)
|
|
|
|
|
before every push to make sure you never forget to make this check.
|
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
All pull requests are reviewed by another person. We have a bot,
|
2015-05-27 14:29:02 +00:00
|
|
|
|
@rust-highfive, that will automatically assign a random person to review your
|
|
|
|
|
request.
|
2015-02-13 17:26:44 +00:00
|
|
|
|
|
|
|
|
|
If you want to request that a specific person reviews your pull request,
|
|
|
|
|
you can add an `r?` to the message. For example, Steve usually reviews
|
|
|
|
|
documentation changes. So if you were to make a documentation change, add
|
|
|
|
|
|
|
|
|
|
r? @steveklabnik
|
|
|
|
|
|
|
|
|
|
to the end of the message, and @rust-highfive will assign @steveklabnik instead
|
|
|
|
|
of a random person. This is entirely optional.
|
|
|
|
|
|
|
|
|
|
After someone has reviewed your pull request, they will leave an annotation
|
|
|
|
|
on the pull request with an `r+`. It will look something like this:
|
|
|
|
|
|
|
|
|
|
@bors: r+ 38fe8d2
|
|
|
|
|
|
|
|
|
|
This tells @bors, our lovable integration bot, that your pull request has
|
|
|
|
|
been approved. The PR then enters the [merge queue][merge-queue], where @bors
|
|
|
|
|
will run all the tests on every platform we support. If it all works out,
|
|
|
|
|
@bors will merge your code into `master` and close the pull request.
|
|
|
|
|
|
2016-12-13 16:31:48 +00:00
|
|
|
|
[merge-queue]: https://buildbot.rust-lang.org/homu/queue/rust
|
2015-02-13 17:26:44 +00:00
|
|
|
|
|
2015-07-06 16:14:49 +00:00
|
|
|
|
Speaking of tests, Rust has a comprehensive test suite. More information about
|
|
|
|
|
it can be found
|
|
|
|
|
[here](https://github.com/rust-lang/rust-wiki-backup/blob/master/Note-testsuite.md).
|
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
## Writing Documentation
|
|
|
|
|
|
|
|
|
|
Documentation improvements are very welcome. The source of `doc.rust-lang.org`
|
|
|
|
|
is located in `src/doc` in the tree, and standard API documentation is generated
|
|
|
|
|
from the source code itself.
|
|
|
|
|
|
2015-06-30 22:57:54 +00:00
|
|
|
|
Documentation pull requests function in the same way as other pull requests,
|
|
|
|
|
though you may see a slightly different form of `r+`:
|
2015-02-13 17:26:44 +00:00
|
|
|
|
|
|
|
|
|
@bors: r+ 38fe8d2 rollup
|
|
|
|
|
|
|
|
|
|
That additional `rollup` tells @bors that this change is eligible for a 'rollup'.
|
|
|
|
|
To save @bors some work, and to get small changes through more quickly, when
|
|
|
|
|
@bors attempts to merge a commit that's rollup-eligible, it will also merge
|
|
|
|
|
the other rollup-eligible patches too, and they'll get tested and merged at
|
|
|
|
|
the same time.
|
|
|
|
|
|
2017-03-24 20:16:00 +00:00
|
|
|
|
To find documentation-related issues, sort by the [T-doc label][tdoc].
|
2015-05-27 14:29:02 +00:00
|
|
|
|
|
2017-03-24 20:16:00 +00:00
|
|
|
|
[tdoc]: https://github.com/rust-lang/rust/issues?q=is%3Aopen%20is%3Aissue%20label%3AT-doc
|
2017-03-24 20:28:59 +00:00
|
|
|
|
|
|
|
|
|
You can find documentation style guidelines in [RFC 1574][rfc1574].
|
|
|
|
|
|
2017-03-24 20:16:00 +00:00
|
|
|
|
[rfc1574]: https://github.com/rust-lang/rfcs/blob/master/text/1574-more-api-documentation-conventions.md#appendix-a-full-conventions-text
|
2015-05-27 14:29:02 +00:00
|
|
|
|
|
2017-02-23 10:45:30 +00:00
|
|
|
|
In many cases, you don't need a full `./x.py doc`. You can use `rustdoc` directly
|
2015-10-02 21:09:27 +00:00
|
|
|
|
to check small fixes. For example, `rustdoc src/doc/reference.md` will render
|
|
|
|
|
reference to `doc/reference.html`. The CSS might be messed up, but you can
|
2016-08-22 02:42:33 +00:00
|
|
|
|
verify that the HTML is right.
|
2015-10-02 21:09:27 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
## Issue Triage
|
|
|
|
|
|
|
|
|
|
Sometimes, an issue will stay open, even though the bug has been fixed. And
|
|
|
|
|
sometimes, the original bug may go stale because something has changed in the
|
|
|
|
|
meantime.
|
|
|
|
|
|
|
|
|
|
It can be helpful to go through older bug reports and make sure that they are
|
|
|
|
|
still valid. Load up an older issue, double check that it's still true, and
|
2015-05-27 14:29:02 +00:00
|
|
|
|
leave a comment letting us know if it is or is not. The [least recently
|
|
|
|
|
updated sort][lru] is good for finding issues like this.
|
|
|
|
|
|
|
|
|
|
Contributors with sufficient permissions on the Rust repo can help by adding
|
|
|
|
|
labels to triage issues:
|
|
|
|
|
|
|
|
|
|
* Yellow, **A**-prefixed labels state which **area** of the project an issue
|
2015-10-02 21:08:14 +00:00
|
|
|
|
relates to.
|
2015-05-27 14:29:02 +00:00
|
|
|
|
|
2016-01-14 10:47:04 +00:00
|
|
|
|
* Magenta, **B**-prefixed labels identify bugs which are **blockers**.
|
2015-05-27 14:29:02 +00:00
|
|
|
|
|
|
|
|
|
* Green, **E**-prefixed labels explain the level of **experience** necessary
|
|
|
|
|
to fix the issue.
|
|
|
|
|
|
|
|
|
|
* Red, **I**-prefixed labels indicate the **importance** of the issue. The
|
|
|
|
|
[I-nominated][inom] label indicates that an issue has been nominated for
|
2015-10-02 21:08:14 +00:00
|
|
|
|
prioritizing at the next triage meeting.
|
2015-05-27 14:29:02 +00:00
|
|
|
|
|
|
|
|
|
* Orange, **P**-prefixed labels indicate a bug's **priority**. These labels
|
|
|
|
|
are only assigned during triage meetings, and replace the [I-nominated][inom]
|
2015-10-02 21:08:14 +00:00
|
|
|
|
label.
|
2015-05-27 14:29:02 +00:00
|
|
|
|
|
|
|
|
|
* Blue, **T**-prefixed bugs denote which **team** the issue belongs to.
|
|
|
|
|
|
|
|
|
|
* Dark blue, **beta-** labels track changes which need to be backported into
|
2015-10-02 21:08:14 +00:00
|
|
|
|
the beta branches.
|
|
|
|
|
|
2015-05-27 14:29:02 +00:00
|
|
|
|
* The purple **metabug** label marks lists of bugs collected by other
|
2015-10-02 21:08:14 +00:00
|
|
|
|
categories.
|
2015-05-27 14:29:02 +00:00
|
|
|
|
|
2015-10-02 21:08:14 +00:00
|
|
|
|
If you're looking for somewhere to start, check out the [E-easy][eeasy] tag.
|
2015-02-13 17:26:44 +00:00
|
|
|
|
|
2015-05-27 14:29:02 +00:00
|
|
|
|
[inom]: https://github.com/rust-lang/rust/issues?q=is%3Aopen+is%3Aissue+label%3AI-nominated
|
|
|
|
|
[eeasy]: https://github.com/rust-lang/rust/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy
|
2015-02-13 17:26:44 +00:00
|
|
|
|
[lru]: https://github.com/rust-lang/rust/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-asc
|
|
|
|
|
|
|
|
|
|
## Out-of-tree Contributions
|
|
|
|
|
|
|
|
|
|
There are a number of other ways to contribute to Rust that don't deal with
|
|
|
|
|
this repository.
|
|
|
|
|
|
|
|
|
|
Answer questions in [#rust][pound-rust], or on [users.rust-lang.org][users],
|
|
|
|
|
or on [StackOverflow][so].
|
|
|
|
|
|
|
|
|
|
Participate in the [RFC process](https://github.com/rust-lang/rfcs).
|
|
|
|
|
|
|
|
|
|
Find a [requested community library][community-library], build it, and publish
|
|
|
|
|
it to [Crates.io](http://crates.io). Easier said than done, but very, very
|
|
|
|
|
valuable!
|
2015-01-02 23:41:47 +00:00
|
|
|
|
|
2015-02-13 17:26:44 +00:00
|
|
|
|
[pound-rust]: http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust
|
2015-08-09 21:15:05 +00:00
|
|
|
|
[users]: https://users.rust-lang.org/
|
2015-02-13 17:26:44 +00:00
|
|
|
|
[so]: http://stackoverflow.com/questions/tagged/rust
|
|
|
|
|
[community-library]: https://github.com/rust-lang/rfcs/labels/A-community-library
|
2015-09-11 23:21:11 +00:00
|
|
|
|
|
|
|
|
|
## Helpful Links and Information
|
|
|
|
|
|
|
|
|
|
For people new to Rust, and just starting to contribute, or even for
|
|
|
|
|
more seasoned developers, some useful places to look for information
|
|
|
|
|
are:
|
|
|
|
|
|
|
|
|
|
* The [Rust Internals forum][rif], a place to ask questions and
|
|
|
|
|
discuss Rust's internals
|
|
|
|
|
* The [generated documentation for rust's compiler][gdfrustc]
|
2015-10-02 12:36:27 +00:00
|
|
|
|
* The [rust reference][rr], even though it doesn't specifically talk about Rust's internals, it's a great resource nonetheless
|
2015-09-11 23:21:11 +00:00
|
|
|
|
* Although out of date, [Tom Lee's great blog article][tlgba] is very helpful
|
|
|
|
|
* [rustaceans.org][ro] is helpful, but mostly dedicated to IRC
|
2015-09-12 15:02:01 +00:00
|
|
|
|
* The [Rust Compiler Testing Docs][rctd]
|
2015-09-14 14:28:06 +00:00
|
|
|
|
* For @bors, [this cheat sheet][cheatsheet] is helpful (Remember to replace `@homu` with `@bors` in the commands that you use.)
|
2015-10-02 12:36:27 +00:00
|
|
|
|
* **Google!** ([search only in Rust Documentation][gsearchdocs] to find types, traits, etc. quickly)
|
2015-09-11 23:21:11 +00:00
|
|
|
|
* Don't be afraid to ask! The Rust community is friendly and helpful.
|
|
|
|
|
|
|
|
|
|
[gdfrustc]: http://manishearth.github.io/rust-internals-docs/rustc/
|
2015-12-23 20:42:36 +00:00
|
|
|
|
[gsearchdocs]: https://www.google.com/search?q=site:doc.rust-lang.org+your+query+here
|
2015-09-11 23:21:11 +00:00
|
|
|
|
[rif]: http://internals.rust-lang.org
|
|
|
|
|
[rr]: https://doc.rust-lang.org/book/README.html
|
2016-04-15 19:28:32 +00:00
|
|
|
|
[tlgba]: http://tomlee.co/2014/04/a-more-detailed-tour-of-the-rust-compiler/
|
2015-09-11 23:21:11 +00:00
|
|
|
|
[ro]: http://www.rustaceans.org/
|
2017-03-07 17:43:31 +00:00
|
|
|
|
[rctd]: ./src/test/COMPILER_TESTS.md
|
2016-12-13 16:31:48 +00:00
|
|
|
|
[cheatsheet]: https://buildbot.rust-lang.org/homu/
|