Any recommendations for parsing binary/buffer data with Effect schema?
I'm trying to parse minecraft packets from a Buffer into my data structures. The tricky part is I need to parse one byte at a time since some fields (like varints and strings) can vary in size, and everything needs to be read in a specific order from the protocol. Looking for a nice clean way to handle this with effect, does it even make sense to use schema for that?