Rust has an amazing dbg macro that lets you quickly set up an expression printer that will also put in the source line. It also returns the value of the expression so you can even easily inline the printing when you want to! (more…)
Read more »
A guide to error handling in Rust. The first half introduces Rust's language features and libraries for error handling. The second half should help you make good error handling code in your Rust programs. (more…)
Read more »
Password authentication is seen as the simplest auth method, but there are plenty of pitfalls along the way. We will implement Basic auth from scratch, examining several classes of attacks against our API - and how to counter them. (more…)
Read more »
A template engine for Rust based on Jinja2/Django. Contribute to Keats/tera development by creating an account on GitHub. (more…)
Read more »
Going through the steps of using cargo fuzz to find bugs in Rust projects... (more…)
Read more »