--- a/src/error.rs Tue Dec 31 08:49:10 2024 -0500 +++ b/src/error.rs Mon Dec 30 15:46:28 2024 -0500 @@ -2,10 +2,8 @@ Error passing helper types */ -use std::error::Error; - /// A [`Result`] containing `T` or a dynamic error type -pub type DynResult<T> = Result<T, Box<dyn Error>>; +pub type DynResult<T> = Result<T, anyhow::Error>; /// A [`Result`] containing `()` or a dynamic error type pub type DynError = DynResult<()>;