diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:02:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:02:58 +0000 |
commit | 698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch) | |
tree | 173a775858bd501c378080a10dca74132f05bc50 /src/doc/rust-by-example/CONTRIBUTING.md | |
parent | Initial commit. (diff) | |
download | rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip |
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/doc/rust-by-example/CONTRIBUTING.md')
-rw-r--r-- | src/doc/rust-by-example/CONTRIBUTING.md | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/src/doc/rust-by-example/CONTRIBUTING.md b/src/doc/rust-by-example/CONTRIBUTING.md new file mode 100644 index 000000000..665a708c0 --- /dev/null +++ b/src/doc/rust-by-example/CONTRIBUTING.md @@ -0,0 +1,69 @@ +# Rust by Example contribution guidelines + +Thank you for your interest in making Rust by Example (also known as RBE) +better! We'd love to have your contribution. We expect all contributors to +abide by the [Rust code of conduct], which you can find at that link or in the +[`CODE_OF_CONDUCT.md`] file in this repository. + +[Rust code of conduct]: https://www.rust-lang.org/policies/code-of-conduct +[`CODE_OF_CONDUCT.md`]: https://github.com/rust-lang/rust-by-example/blob/master/CODE_OF_CONDUCT.md + +## License + +RBE is dual licenced under the MIT and Apache 2.0 licenses, and so are all +contributions. Please see the [`LICENSE-MIT`] and [`LICENSE-APACHE`] files in +this directory for more details. + +[`LICENSE-MIT`]: https://github.com/rust-lang/rust-by-example/blob/master/LICENSE-MIT +[`LICENSE-APACHE`]: https://github.com/rust-lang/rust-by-example/blob/master/LICENSE-APACHE + +## Pull Requests + +To make changes to RBE, please send in pull requests on GitHub to the `master` +branch. We'll review them and either merge or request changes. Travis CI tests +everything as well, so you may get feedback from it too. + +If you make additions or other changes to a pull request, feel free to either amend +previous commits or only add new ones, however you prefer. We may ask you to squash +your commits before merging, depending. + +## Issue Tracker + +You can find the issue tracker [on +GitHub](https://github.com/rust-lang/rust-by-example/issues). If you've found a +problem with RBE, please open an issue there. + +We use the following labels: + +* `enhancement`: This is for any request for new sections or functionality. +* `bug`: This is for anything that's in RBE, but incorrect or not working. +* `discussion`: A discussion about improving something in RBE; this may lead to new + enhancement or bug issues. +* `E-mentor`: This issue has someone dedicated to helping a new contributor fix it! + Can apply to both enhancement or bug issues. + +## Development workflow + +To build RBE, [install Rust], and then: + +```bash +$ git clone https://github.com/rust-lang/rust-by-example +$ cd rust-by-example +$ cargo install mdbook +$ mdbook build +``` + +[install Rust]: http://rust-lang.org/install.html + +The files will be in the `book` directory at the top-level; `mdbook serve` will +open the contents in your web browser. + +To run the tests: + +```bash +$ mdbook test +``` + +If you're adding a new chapter, you'll need to edit `src\SUMMARY.md` to add it. If +you're tweaking an existing example, you'll need to edit the corresponding file; check +`src\SUMMARY.md` to see a mapping of where chapters go to files. |