2 releases

0.1.1 Sep 8, 2023
0.1.0 Sep 8, 2023

#1590 in Parser implementations

Download history 21/week @ 2024-01-02 178/week @ 2024-01-09 275/week @ 2024-01-16 88/week @ 2024-01-23 156/week @ 2024-01-30 147/week @ 2024-02-06 274/week @ 2024-02-13 229/week @ 2024-02-20 210/week @ 2024-02-27 345/week @ 2024-03-05 143/week @ 2024-03-12 111/week @ 2024-03-19 79/week @ 2024-03-26 223/week @ 2024-04-02 221/week @ 2024-04-09 410/week @ 2024-04-16

950 downloads per month
Used in 6 crates (3 directly)

Apache-2.0

16KB
326 lines

flexible-time

crates.io docs.rs CI

Time formats can be tricky. And parsing them even more so. However, in some cases you just don't want to bother the user with that. Especially when it comes command line applications.

The Problem

I need a command line argument --since, which allows the user to provide a year, or specific minute of a day. Either one is fine.

This crate can do it.

Filling the gaps

The timestamp will be parsed, but have gaps (like month, day). As can be different expectations on how to fill those gaps. The primary motivation for this crate was a "since" timestamp, so the strategy for that would be to fill missing components with the minimal value. That's implemented using the StartTimestamp.

Currently, there is no timezone handling, it defaults to UTC.

Formats

For timestamps, the following formats can be used:

Input Start timestamp
2023 2023-01-01 00:00:00 UTC
2023-02 2023-02-01 00:00:00 UTC
2023-02-03 2023-02-03 00:00:00 UTC
2023-02-03 16 2023-02-03 16:00:00 UTC
2023-02-03 16:05 2023-02-03 16:05:00 UTC
2023-02-03 16:05:06 2023-02-03 16:05:06 UTC

Dependencies

~750KB
~13K SLoC