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
Clean up code safety, handle errors more intelligently. Right now everything is either manually printed where it happens or bubbles up to a Box<dyn Error> which isn't very useful. At least use something like anyhow to let us capture stringy errors wherever they happen and bubble them up to sane places to handle them in a combined way.
The text was updated successfully, but these errors were encountered:
Clean up code safety, handle errors more intelligently. Right now everything is either manually printed where it happens or bubbles up to a
Box<dyn Error>
which isn't very useful. At least use something likeanyhow
to let us capture stringy errors wherever they happen and bubble them up to sane places to handle them in a combined way.The text was updated successfully, but these errors were encountered: