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
Hi! I've been using crc-fast in a no_std environment and noticed that some error cases use panic!() which can be problematic for embedded systems where we need to handle errors gracefully rather than having the program abort. It would be really helpful if the library could switch to using the thiserror crate to return proper error types instead, giving users the flexibility to decide how to handle errors in their specific contexts. This would make the library much more suitable for no_std and embedded use cases while maintaining its excellent performance characteristics. Thanks for considering this suggestion!