v0.5.0
Breaking Changes
- Subsystems can return
Err<Into<anyhow::Error>>
instead ofErr<anyhow::Error>
- No longer imposes the
anyhow
dependency on library users - Should not be a problem in most cases, but closures only returning
Ok(())
will now fail to compile, as Rust is unable to deduce the Error type
- No longer imposes the