Skip to content

Should impl From/Into NaiveDateTime and our own English Dates #4

Description

@heca-project

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:

  1. Remove another dependency (at least hide chrono behind a feature flag),
  2. Hypothetically work with days much longer into the future (use a u128 datestamp),
  3. Do faster calculations (We can guarantee no overflow in advance, and then add without checking for overflow).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions