Issue
At the moment there is more or less no error handling in rsblocks. The program will crash if any error arise due to usage of unwrap()
and expect()
.
Suggested solution
Abstract and propagate error to be handled at the right level using a more ergonomic library than std, eg. fehler or snafu.