Rust’s second birthday is a little less than two weeks away (May 15th, 2017), so
it’s time for us to reflect on our progress over the past year, and how we
should plan for the future. The Rust Community Team is pleased to announce our
2017 State of Rust S... (more…)
Read more »
One feature of Rust that I'm rather enamoured with is its macro system. Known as "macro by example" (MBE) or sometimes referred to as macro_rules, it provides you with an impressive amount of power whilst not allowing for the sort of evil tricks you can ... (more…)
Read more »
I used to be afraid of async Rust. It's easy to get into trouble ! But thanks to the work done by the whole community, async Rust is getting
easier to use every week. One proje... (more…)
Read more »
The ndarray crate provides us with a multidimensional container that can contain general or numerical elements. If you're familiar with Python, then you can consider it to be similar to the numpy pack... (more…)
Read more »