You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The the lateset release of chrono (v0.4.15) does not support binary assignment operators such as AddAssign and SubAssign as well as other features due to its dependence on an old version of the time crate:
For example, this won't work:
let mut instant = Local::now();
let mut duration = Duration::seconds(1);
instant += duration;
duration += duration;
Does chrono plan to migrate to a newer version of time?
The text was updated successfully, but these errors were encountered:
benesch is correct, the plan is to move off the time crate. AddAssign/SubAssign will be implemented for the chrono-local versions of those structs, though.
The the lateset release of chrono (v0.4.15) does not support binary assignment operators such as
AddAssign
andSubAssign
as well as other features due to its dependence on an old version of thetime
crate:For example, this won't work:
Does chrono plan to migrate to a newer version of
time
?The text was updated successfully, but these errors were encountered: