We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81e107e commit 2c65d5dCopy full SHA for 2c65d5d
1 file changed
src/lib.rs
@@ -19,6 +19,10 @@ pub mod prelude {
19
#[cfg(feature = "log")]
20
pub use log::{debug, error, info, trace, warn};
21
pub use std::time::{Duration, Instant};
22
+
23
+ // Anyhow
24
+ pub use anyhow::{anyhow, bail};
25
+ pub type AnyResult<T> = anyhow::Result<T>;
26
}
27
28
pub mod anyhow {
0 commit comments