-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error handling without anyhow #22
Comments
Hey, I came back after learning a bit about anyhow.
If we want |
Interoperability wise it is better for a library to use |
Hi, thank you for writing this library!
I noticed that most of the exported API functions in this library return
anyhow
results.Being new to the rust error handling ecosystem, I was wondering if as an application developer I will also have to use
anyhow
to handle errors, or will I still be able to use the traditionalResult<>
, like I have always done.I have been searching for a Rust library that could help me with XMR payment processing, and this library seems like on of the only options, so I will probably use it anyways (: But I am asking ahead of time just to know if I will have to make some compromises with the rest of my application code.
Thanks!
The text was updated successfully, but these errors were encountered: