Managed to make Parcel CSS even faster! It now parses with zero string copies. Instead, all strings in the AST are borrowed from the input string (i.e. just pointers).
Not only is this faster, it also uses less memory. And thanks to Rust's lifetimes, this is totally safe! 🤩