From d7619c8b4397f64de9d93637b854d6b1e59db706 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Arcos Date: Sun, 29 May 2022 09:54:26 +0200 Subject: [PATCH 1/3] Add esp-rs exception --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 194c940..f69deda 100644 --- a/src/main.rs +++ b/src/main.rs @@ -63,6 +63,7 @@ lazy_static! { "https://crates.io".to_string(), // This one gets a free pass :) "https://cloudsmith.com/cargo-registry/".to_string(), // First private cargo registry (https://cloudsmith.com/blog/worlds-first-private-cargo-registry-w-cloudsmith-rust/) and not much in the way of other options yet. See also https://github.com/rust-unofficial/awesome-rust/pull/1141#discussion_r688711555 "https://gitlab.com/ttyperacer/terminal-typeracer".to_string(), // GitLab repo with >40 stars. + "https://github.com/esp-rs".to_string(), // Espressif Rust Organization (Organizations have no stars). ]; } From 891ee3cf7dcb46a42da541aa926c639f371e8dc3 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Mon, 30 May 2022 09:31:23 +0200 Subject: [PATCH 2/3] Add embedded introduction --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6df0703..a4852b4 100644 --- a/README.md +++ b/README.md @@ -538,13 +538,15 @@ See also [A comparison of operating systems written in Rust](https://github.com/ ### Embedded -[Rust Embedded](https://rust-embedded.org/) +[Rust Embedded](https://rust-embedded.org/) focuses on improving the end-to-end experience of using Rust in resource-constrained environments and non-traditional platforms. See [awesome embedded Rust ](https://github.com/rust-embedded/awesome-embedded-rust) for a curated, and more extended list of embedded Rust resources. * Arduino * [avr-rust/ruduino](https://github.com/avr-rust/ruduino) Reusable components for the Arduino Uno. * Cross compiling * [japaric/rust-cross](https://github.com/japaric/rust-cross) — everything you need to know about cross compiling Rust programs [![build badge](https://api.travis-ci.org/japaric/rust-cross.svg?branch=master)](https://travis-ci.org/japaric/rust-cross) * [japaric/xargo](https://github.com/japaric/xargo) — effortless cross compilation of Rust programs to custom bare-metal targets like ARM Cortex-M [![build badge](https://api.travis-ci.org/japaric/xargo.svg?branch=master)](https://travis-ci.org/japaric/xargo) +* Espressif + * [esp-rs](https://github.com/esp-rs) home to a number of community projects enabling the use of the Rust programming language on various SoCs and modules produced by Espressif Systems. * Raspberry Pi * [Ogeon/rust-on-raspberry-pi](https://github.com/Ogeon/rust-on-raspberry-pi) — instructions for how to cross compile Rust projects for the Raspberry Pi . From 4802f523c5cb73053d3873f18546e5311c1bef27 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Arcos Date: Fri, 3 Jun 2022 11:53:30 +0200 Subject: [PATCH 3/3] Fix lint --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ce93d5a..e700d4e 100644 --- a/README.md +++ b/README.md @@ -538,7 +538,7 @@ See also [A comparison of operating systems written in Rust](https://github.com/ ### Embedded -[Rust Embedded](https://rust-embedded.org/) focuses on improving the end-to-end experience of using Rust in resource-constrained environments and non-traditional platforms. See [awesome embedded Rust ](https://github.com/rust-embedded/awesome-embedded-rust) for a curated, and more extended list of embedded Rust resources. +[Rust Embedded](https://rust-embedded.org/) focuses on improving the end-to-end experience of using Rust in resource-constrained environments and non-traditional platforms. See [awesome-embedded-rust](https://github.com/rust-embedded/awesome-embedded-rust) for a curated, and more extended list of embedded Rust resources. * Arduino * [avr-rust/ruduino](https://github.com/avr-rust/ruduino) Reusable components for the Arduino Uno.