https://blog.rust-lang.org/2026/07/09/Rust-1.97.0/
#rustlang 1.97.0 is out
Be careful with `clippy --fix`, `manual_filter` auto fix can eat your comments.
A #rustlang programmer with interests in functional programming, category theory and advanced type sorcery
https://blog.rust-lang.org/2026/07/09/Rust-1.97.0/
#rustlang 1.97.0 is out
Be careful with `clippy --fix`, `manual_filter` auto fix can eat your comments.
#rustlang 1.96 is out.
https://blog.rust-lang.org/2026/05/28/Rust-1.96.0/
Nothing from clippy for me, but finally proper Range types are getting there!
Went source diving to understand why `compadd` in `zsh` won't take a literal array with `-d` parameter despite `man zshcompwid` stating that it should take it.
The answer is... Yes, it takes arrays, but for `compadd` specifically an array is anything in parens, with commas and spaces as separators. It supports escaping, but that's about it. Very different from what an array in `zsh` actually is.
This won't be fixed, but now you know.
Spent a lot of time (a lot of time) trying to figure out why my shell completion experiments are failing. Turns out I was missing a " -- " in one place and "%" needed to be replaced with "%%"., but all the abstraction layers and shell's desire not to print an error on invalid input made it tricky to debug.
Printing errors is important.
- Thus, there is currently pretty much no ethical way of using LLMs.
https://blog.rust-lang.org/2026/04/16/Rust-1.95.0/
#rustlang 1.95.0 is out
I can finally see bits needed to make ranges more usable! Eventually, in the next language revision.