You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the underlying binary parser is implemented using the nom 3 create. At the time of writing, the latest version of nom is 5. The latest nom release makes it possible to use functions instead of macros. This is nice for many reasons but primarily:
Simpler to understand
Better compile times
Better IDE/clippy/rustfmt support
Potentially better performance
Furthermore, rewriting the parsers is a good way of getting to know this project better! There has been a previous attempt at this (for nom 4) but the PR has become stale (#5).
The text was updated successfully, but these errors were encountered:
Currently, the underlying binary parser is implemented using the nom 3 create. At the time of writing, the latest version of nom is 5. The latest nom release makes it possible to use functions instead of macros. This is nice for many reasons but primarily:
Furthermore, rewriting the parsers is a good way of getting to know this project better! There has been a previous attempt at this (for nom 4) but the PR has become stale (#5).
The text was updated successfully, but these errors were encountered: