Rust your ARM microcontroller

Want to program your microcontroller in Rust but your microcontroller vendor
doesn’t provide a Rust HAL / SDK? No wonder. AFAIK, no vendor is betting for
Rust … yet. How about binding to a C HAL? No? Don’t feel like wrestling with
bindgen and the HAL buil… Read more

Similar

A fast port scanner in 100 lines of Rust

To write a fast port scanner, a programming language requires: A Good I/O model, not to eat all the resources of the system. High-level abstractions and a good packaging system to isolate low-level code and reuse it easily. To be type and memory safe, be... (more…)

Read more »

The Problem of Effects in Rust

In a previous post, I shortly discussed the concept of “effects” and the parallels between them. In an unrelated post since then, Yosh Wuyts writes about the problem of trying to write fallible code inside of an iterator adapter that doesn’t support it. I... (more…)

Read more »

Tokio, the async runtime for Rust, hits 1.0

We are pleased to announce the 1.0 release of Tokio, an asynchronous runtime for the Rust programming language. Tokio provides the needed building blocks for writing reliable networking applications without compromising speed. It comes with asynchronous A... (more…)

Read more »