Cargonauts – A Rust async web framework

I’ve been working on a project for a few months now, and I’m very excited to be ready to share it with other people. Its called cargonauts, and its a web framework for Rust, built on top of tokio… Read more

Similar

Error Handling in Rust

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 »