Can anyone recommend crates for parsing simple binary data? I'd like something more declarative than manually writing out byteorder reads, if possible. I only need packed structs containing simple types: integers of various lengths, bitfields, arrays and other structures. Also length prefixed strings but they're rare enough that doing it manually isn't too bad.
In Python I'm using ctypes structures so something similar would ease the learning curve for me but I'm not married to that system if there's something better.
I think nom would seem to be the better option in my case. It looks a bit more complex than I need but that might just be my unfamiliarity with the syntax.
If your data can be represented as a C struct, then you could also write a structure definition marked with #[repr(C)] and then transmute_copy bytes. It may be more natural if data originates from C world. Also you could use bindgen to automatically generate the struct definition from header file.
I've had great success using scroll for this exact purpose. It provides a #[derive(Pread)] that makes using it with your own structs really simple. You can see an example of its use in my minidump crate: