Skip to content
This repository was archived by the owner on Jul 1, 2025. It is now read-only.

Commit 93e3f4c

Browse files
author
James Munns
committed
Add contributing guide
1 parent 60c4c74 commit 93e3f4c

File tree

2 files changed

+66
-2
lines changed

2 files changed

+66
-2
lines changed

CONTRIBUTING.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Contributing
2+
3+
There are three phases to the Not Yet Awesome Embedded Rust List:
4+
5+
* Adding an item to the list
6+
* Marking an item as a work in progress
7+
* Removing an item from the list
8+
9+
## Adding an item to the list
10+
11+
Anyone can submit an item that they think is not yet awesome to the list. To do this, just [edit the README] for this repo, and add your item to the list.
12+
13+
[edit the README]: https://github.com/rust-embedded/not-yet-awesome-embedded-rust/edit/master/README.md
14+
15+
In order to help people make this thing awesome, your item should meet all of the following criteria:
16+
17+
1. You request is clearly stated, linking to relevant documentation, such as a whitepaper, protocol definition, datasheet, etc.
18+
* This lets someone know how to implement this request, and make Embedded Rust more awesome.
19+
2. "Success Criteria" for your request are defined, such as "Add PWM support to the iMXRT1050 HAL"
20+
* This lets the reviewer know when the work is done, so they can remove this item from the list
21+
3. Possible using today's Rust (not blocked by LLVM impl, rustc impl, etc.)
22+
* For now, we can't accept anything in this list that is not possible with today's (preferrably stable) version of Rust. This keeps items from staying on the list for too long.
23+
4. Your request should be broken into reasonable work packages, such as "Create HAL for XYZ chip", not "support all boards from ABC vendor"
24+
* This also keeps items from staying on the list for too long
25+
26+
Once you've submitted a PR by editing the README, someone from the WG will review your suggestion to make sure that it meets the criteria above. They'll help you fix any issues with your request. Once the review checklist is complete, and any fixes are made, the item will be added to the list!
27+
28+
## Marking an item as WIP
29+
30+
If you've started addressing one of the items on the Not Yet Awesome Embedded Rust list, you can add your project here, even if you aren't finished yet! This is to help you find contributors who are willing to help you make things awesome.
31+
32+
You can let people know you are working on something by [editing the readme][edit the README], and adding a link to your project. Before adding your project, you should make sure that it meets all the following criteria:
33+
34+
1. You should link to the source project on GitHub/GitLab/etc. Your project must be open source
35+
2. You should state whether outside contributions are welcome
36+
3. Your project must be relevant to the TODO item it addresses
37+
4. Your project must be more than just an empty repo or a placeholder (e.g. just a "hello world" `bin.rs`/`lib.rs` is not enough!)
38+
39+
Once you've submitted a PR by editing the README, someone from the WG will review your suggestion to make sure that it meets the criteria above. They'll help you fix any issues with your request. Once the review checklist is complete, and any fixes are made, the item will be added to the list!
40+
41+
## Removing the item from the TODO list
42+
43+
Once you have made something on the list awesome, we can remove the item from this list! You can do this by [editing the README][edit the README], and removing the item.
44+
45+
When you remove a list from the item, you should let us know what project "fixes" this in your pull request. We'll make sure all of the following criteria are true:
46+
47+
48+
1. Your project addresses the original request fully
49+
2. The crate that addresses the request has been added to the [Awesome Embedded Rust] list
50+
3. The crate has been published on crates.io (or somewhere else where other people can consume it)
51+
52+
Once the above items are complete, the Not Yet Awesome item and all WIP crates are removed from the list. :confetti_ball: :tada:
53+
54+
[Awesome Embedded Rust]: https://github.com/rust-embedded/awesome-embedded-rust

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Embedded Rust
1+
# Not *Yet* Awesome Embedded Rust
22

33
[![Awesome](https://awesome.re/badge.svg)](https://awesome.re)
44

@@ -8,11 +8,21 @@ This is a collection of things that are **not yet** awesome in Embedded Rust.
88

99
This project is developed and maintained by the [Resources team][team].
1010

11+
Interested in:
12+
13+
* Adding something to this list that is not yet awesome?
14+
* Tell people you are working on making something on this list awesome?
15+
* Tell people you have made something on this list awesome already?
16+
17+
Check out our [Contributing Guide] for how to get started.
18+
19+
[Contributing Guide]: CONTRIBUTING.md
20+
1121
## Table of contents
1222

1323
## License
1424

15-
The Embedded Rust Patterns Book (this project) is distributed under the terms of the Creative Commons [CC-BY-SA v4.0] license.
25+
The Not Yet Awesome Embedded Rust list (this project) is distributed under the terms of the Creative Commons [CC-BY-SA v4.0] license.
1626

1727
Copies of the license used by this project may also be found here: [CC-BY-SA v4.0 Hosted].
1828

0 commit comments

Comments
 (0)