# Anyhow There is a very popular rust crate called anyhow [Link](https://docs.rs/anyhow/latest/anyhow/). Anyhow could provide the following benefits to the project: - Easier error handling. Every kind error can be propagated via anyhow. - Anyhow allows creation of ad hoc errors as error message. - Attaches back trace for all errors if not present. Useful for debugging - Provides a convenient way to augment errors with additional contexts/information of an error.