This crate carries a allow(const_err). That lint is going away since it becomes a hard error, which causes a warning due to the removed lint being used, which then triggers deny(warnings).
The crate does not actually seem to trigger const_err (according to crater), so the hard error itself should not be a problem. The allow(const_err) can likely just be removed.
This crate carries a
allow(const_err). That lint is going away since it becomes a hard error, which causes a warning due to the removed lint being used, which then triggersdeny(warnings).The crate does not actually seem to trigger const_err (according to crater), so the hard error itself should not be a problem. The
allow(const_err)can likely just be removed.