New week, new Rust! What are you folks up to?
Making my way through the Code Crafters interpreter project. It's free while it's in beta but I'm not sure how much longer that will be.
It's been really interesting because the book uses Java so part of the challenge is figuring out the Rust way of writing it instead of the Java way the book does.
That should be interesting to @Chaseis4344 since he started something very similar.
1 Like
Made a AsyncBufReader crate that resizes based on the user needs. Essentially an async version of BufferedReader that is closer to the API we are used to in tokio. I was needing it because I am doing peeking on TCPStreams to parse magic bytes without consuming the data.