Understanding Rust’s ‘serde’ using macro expansion
In writing fastnbt, I struggled to find an in depth explanation of how to write a deserializer with serde. I want to explore how serde works using cargo expand. ... (more…)
Read more »The ndarray crate provides us with a multidimensional container that can contain general or numerical elements. If you’re familiar with Python, then you can consider it to be similar to the numpy pack… Read more