DEVELOPER NEWS STREAM
Direct logs, engine updates, and framework notifications parsed from curated RSS feeds and announcements, updated hourly.

Steve PrydeIn defence of (some) fragmentation
Any time a new project is announced, especially in a relatively young language such as Rust, there wi...

Steve PrydeUsing Types To Prevent Unit Conversion Errors
What if we could use static types to prevent passing a value in Centimetres to a function that expect...

Johnny BoyStart playing with RUST + Cargo
Installation Let us start setting up our environment by following what is in the official...

Rust NIFs in Elixir
Rustler - Native Implemented Functions (NIFs) in Rust from Elixir Elixir is a dynamic, strongly...

Abhishek GuptaRust: Enums and Pattern Matching
This blog covers concepts related to the following Rust topics: Enum Pattern matching the code i...

BCDay37:Post JSON to API with surf - 100DayOfRust
We can use Rust's surf crate to post application/json type data to API: Cargo.toml: [dependencies]...

Pavel LazarevHow to convert Excel to HTML and JSON and vice versa
No doubt, Excel is the most popular tool for data processing starting from simple Excel tables with p...

sdtttttRust 为什么需要生命周期注解
fn main() { let b; { let a = 10; b = &a; } println!("{}",...

Nate ClarkVanity Rust - Implementing Fn on Rust Structs
Learn how to use nightly rust features to treat your structs like functions.

Ari VInside Rust at Embark 🦀
A peek inside our day-to-day work with Rust and open source game development Originally pu...

Frank KumroDeploy Elixir apps utilizing Rust NIFs on Render.com
After a long week of dealing with servers at my day job I had no urge to do the same with my side p...

Luca BarbatoOxidizing code
Last week I presented to my local rust meetup a neat tool called c2rust. Next month, if everything re...

Adam Crockett 🌀Deno dependencies, xstate
I have been playing with deno again lately, seems like it's come quite far now. But what I am wonderi...

Bruno OliveiraLearning Rust - Organizing our code with modules
Introduction In the previous post in this series, we looked at Cargo, and how the build system and p...

BCDay36:Calculate sha1 with crypto and sha1 crate - 100DayOfRust
There are 2 crates you can use to calculate the sha1 value: crypto and sha1: Cargo.toml: [dependen...

Ben LovyHyper Webapp Template
Like many of us, I'm quite lazy. When making a wep application, lots of the core functionality will...