Closed
Description
The previous version of the chrono-humanize
crate fails to compile with the lower range bound must be less than or equal to upper
error (see the build log). No error nor warning was present in the 1.25 release.
error[E0030]: lower range bound must be less than or equal to upper
--> src/humantime.rs:88:13
|
88 | MIN...-1 => Tense::Past,
| ^^^ lower bound larger than upper bound
Since MIN
is actually std::i64::MIN
, the error is wrong and should be fixed.
- chrono-humanize 0.0.10 regressed from stable to beta (build log) cc @imp