From ceddfcdebd0c14de60ad16aa6ef59a2e04bd7ed8 Mon Sep 17 00:00:00 2001 From: MarcoIeni <11428655+MarcoIeni@users.noreply.github.com> Date: Wed, 29 Jul 2026 18:42:59 +0200 Subject: [PATCH] add contributing and coc --- CODE_OF_CONDUCT.md | 8 ++++++++ CONTRIBUTING.md | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 CODE_OF_CONDUCT.md create mode 100644 CONTRIBUTING.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..dc75a3b --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,8 @@ +# Code of Conduct + +The Rust Foundation has adopted a Code of Conduct that we expect project +participants to adhere to. Please read +[the full text][code-of-conduct] +so that you can understand what actions will and will not be tolerated. + +[code-of-conduct]: https://foundation.rust-lang.org/policies/code-of-conduct/ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..64fb06d --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,41 @@ +# Contributing to a Rust Foundation Project + +Thank you for your interest in contributing to this Rust Foundation project. +We are happy and excited to review and accept your pull requests. + +## Before You Begin Contributing + +### About this project + +This project is meant for people working on the Rust Project infrastructure, +such as Rust Foundation employees. We don't accept contributions for +features we won't use. Given the specific nature of this project, +we recommend forking it. +That said, we are happy to accept suggestions and review contributions! + +### Licenses + +There is no Contributor License Agreement to sign to contribute this project. +Your contribution will be covered by the licenses granted for this +repository. +In other words, your contribution will be licensed to the Foundation +and all downstream users under those licenses. You can read more in the +Foundation's [intellectual property policy][ip-policy]. + +### Code of Conduct + +Please review and adhere to the [code of conduct](CODE_OF_CONDUCT.md) before +contributing any pull requests. + +## Contribution Process + +We use GitHub pull requests to accept contributions. Consult [GitHub Help][pull-requests] +for more information on using pull requests. + +### Issues + +Do you just want to file an issue for the project? Please do so in GitHub under +the `Issues` tab. + +[ip-policy]: https://foundation.rust-lang.org/policies/intellectual-property-policy/ +[pull-requests]: https://help.github.com/articles/about-pull-requests/