The addition operator `+`.| doc.rust-lang.org
This is a library for controlling colours and formatting, such as red bold text or blue underlined text, on ANSI terminals.| docs.rs
toml v0.9| epage.github.io
I blog mostly about my own programming projects.| burntsushi.net
This is the second post of a series where we go through the performance work we did in rustls, a modern TLS library in Rust. Today we implement allocation-free decoding using traits and high-ranked trait bounds| ferrous-systems.com
Why I am not enjoying programming in Rust.| mmapped.blog
A clone-on-write smart pointer.| doc.rust-lang.org
I write compilers for fun. I can’t help it. Consequently, I also write a lot of parsers. In systems programming, it’s usually a good idea to try to share memory rather than reuse it, so as such my AST types tend to look like this.| mcyoung.xyz
One of the more basic things my wordlist-manipulating program, Tidy, does is to sort words alphabetically. By that I mean: given a wordlist, two of the few things it does by default is to (a) remove duplicate words and (b) alphabetize them. Removing duplicate words is critical to the security...| Prevent Default