Lately I’ve been seeing lots of anecdotes from people trying to get into Rust
who get really hung up on strings (&str, String, and their relationship).
Beyond Rust’s usual challenges around ownership, there can be an added layer of
frustration because… Read more
Similar
At Kudelski Security, we perform quite a few security and cryptography reviews involving Rust code. Rust support in tooling has been lacking. We’ve developed some tools internally to assist i… (more…)
Read more »
Good morning! It is still 2020, and the world is literally on fire , so I guess we could all use a distraction. This article continues the tradition of me getting shamelessly
n... (more…)
Read more »
Join our January edition of the Rust Linz Meetup and listen to Luca Palmieri talk about Error Handling... (more…)
Read more »
In the realm of systems programming, safety and security are paramount. My "Safe and Secure Coding in Rust: A Comparative Analysis of Rust and C/C++" book is a deep dive into the world of system programming languages, with a spotlight on Rust's capabiliti... (more…)
Read more »
One of Rust's notable differences from C is its requirement that all values have a defined size, which enables runtime bounds-checking and advanced static analysis tooling such as MIRI. For dynamically-sized types (DSTs) this requirement is implemented us... (more…)
Read more »