In this post I take a look at a popular Rust crate for generating lexers called logos. One of its goals is to compile regex specifications down to a jump-table FSM that is supposedly faster than anything you'd write by hand. This claim nerd-sniped me into writing a hand-rolled SIMD lexer, against which I'll put logos to the test.