Anyhow ¯\_(ツ)_/¯

Build Status Latest Version Rust Documentation

This library provides anyhow::Error, a trait object based error type for easy idiomatic error handling in Rust applications.

toml [dependencies] anyhow = "1.0"

Compiler support: requires rustc 1.34+


Details


Comparison to failure

The anyhow::Error type works something like failure::Error, but unlike failure ours is built around the standard library's std::error::Error trait rather than a separate trait failure::Fail. The standard library has adopted the necessary improvements for this to be possible as part of [RFC 2504].


Acknowledgements

The implementation of the anyhow::Error type is originally forked from fehler::Exception (https://github.com/withoutboats/fehler). This library exposes it under the more standard Error / Result terminology rather than the throw! / #[throws] / Exception language of exceptions.


License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.


Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.