RISC-V architecture gets support for language that enables development of highly concurrent and highly safe systems. The Rust language has a syntax that is... (more…)
Read more »
Slowly but surely the Rust language is making its way into Linux. I talked with Linus Torvalds and Greg Kroah-Hartman about where they see Rust and Linux working together. (more…)
Read more »
(This is a section of the lilos intro guide that people seemed to like, so
to increase its visibility, I’m lifting it up into its own post and expanding it
a bit. I hope this is a useful companion piece to the post on async
debugging I posted this morning... (more…)
Read more »
A runtime for writing reliable asynchronous applications with Rust. Provides I/O, networking, scheduling, timers, ... - tokio-rs/tokio... (more…)
Read more »
Like most programming languages, Rust encourages the programmer to handle
errors in a particular way. Generally speaking, error handling is divided into
two broad categories: exceptions and return values. Rust opts for return
values. (more…)
Read more »