Right now we work with Utc, but there's no reason to limit ourselves to Utc. NaiveDateTime can also work, and so can a custom Gregorian DateTime object. The main advantage of the latter is that we can:
- Remove another dependency (at least hide
chrono behind a feature flag),
- Hypothetically work with days much longer into the future (use a
u128 datestamp),
- Do faster calculations (We can guarantee no overflow in advance, and then add without checking for overflow).
Right now we work with Utc, but there's no reason to limit ourselves to Utc. NaiveDateTime can also work, and so can a custom Gregorian DateTime object. The main advantage of the latter is that we can:
chronobehind a feature flag),u128datestamp),