Posts tagged with 'rust'

Posts tagged with 'rust'

reqwest 0.13 Upgrade and WebPKI

by ian

In case you missed the announcement, the reqwest crate has a new and very important release out! reqwest is an opinionated, high-level HTTP client for Rust, and the main feature of this release is tha...

Even Safer Rust with Miri

by ian

Recently some of the Miri contributors published a paper that was accepted to POPL. I've been using Rust professionally for about 7 years now, and while I'd heard of Miri several times over the years,...

Const Assertions

by ian

I'm currently working on a project which involves a lot of lower level data structures. By lower level I mean things like layout and bit positions, and exact sizes being important. As such, I have a n...

Optimizing Rust Builds with Target Flags

by ian

Recently I've been doing some work using Apache DataFusion for some high-throughput data pipelines. One of the interesting things I noticed on the user guide was the suggestion to set RUSTFLAGS='-C ta...

Unicode Normalization

by ian

Today I ran into an amusingly named place, thanks to some sharp eyes on the OpenStreetMap US Slack. The name of this restaurant is listed as "𝐊𝐄𝐁𝐀𝐁 𝐊𝐈𝐍𝐆 𝐘𝐀𝐍𝐆𝐎𝐍". That isn't some font tricker...

The rust-toolchain.toml file

by ian

This isn't so much a TIL as a quick PSA. If you're a Rust developer and need to ensure specific things about your toolchain, the rust-toolchain.toml file is a real gem! I don't quite remember how, but...