Rust was created with the goal to achieve a secure systems programming language that does not compromise performance. Here's a look at how tCell uses Rust. (more…)
Read more »
Software often logs urls using std::format::Display. Example from ureq HTTP client library: info!("sending request {} {}", method, url); When the Url contains a password, the password end... (more…)
Read more »
This article is a response to the #rust2020 call for blog posts. We talk about what we’re grateful for and what we’d like to see improved... (more…)
Read more »
In the last several years async-friendly languages and APIs have received a large amount of attention. One contentious point in the language design space are the “colored functions”, or… (more…)
Read more »
Rust is a modern systems programming language focusing on safety, speed,
and concurrency. It accomplishes these goals by being memory safe without using
garbage collection. (more…)
Read more »