Are there any good books/tutorials on implementing compiler or interpreter or VM in Rust ?
I do not care about the language being implemented. The primary focus is seeing how it is done in Rust.
EDIT: Vec<u8> -> AST
is a solved problem. It is not the parsing part that interests me. It is the AST -> ...
part that I am interested in.