parse_datetime
A Rust crate for parsing human-readable relative time strings and human-readable datetime strings.
Features
- Parses a variety of human-readable and standard time formats.
- Supports positive and negative durations.
- Allows for chaining time units (e.g., "1 hour 2 minutes" or "2 days 2 hours ago").
- Calculate durations relative to a specified date.
- Relies on Jiff
Usage
Add parse_datetime to your Cargo.toml with:
cargo add parse_datetime
Then, import the crate and use the parse_datetime_at_date function:
use ;
use ;
let now = now;
let after = parse_datetime_at_date;
match after.unwrap
For DateTime parsing, import the parse_datetime function:
use ;
use ;
let dt = parse_datetime;
match dt.unwrap
For years beyond jiff's representable range (e.g., year 10000+), the result is an ExtendedDateTime:
use ;
let dt = parse_datetime.unwrap;
match dt
Supported Formats
The parse_datetime and parse_datetime_at_date functions support absolute datetime and the following relative times:
numunit(e.g., "-1 hour", "+3 days")unit(e.g., "hour", "day")- "now" or "today"
- "yesterday"
- "tomorrow"
- use "ago" for the past
- use "next" or "last" with
unit(e.g., "next week", "last year") - unix timestamps (for example "@0" "@1344000")
num can be a positive or negative integer.
unit can be one of the following: "fortnight", "week", "day", "hour", "minute", "min", "second", "sec" and their plural forms.
Return Values
parse_datetime and parse_datetime_at_date
The parse_datetime and parse_datetime_at_date function return:
Ok(ParsedDateTime)- If the input string can be parsedParsedDateTime::InRange(Zoned)for years supported byjiff::ZonedParsedDateTime::Extended(ExtendedDateTime)for out-of-range years (for example>9999)
Err(ParseDateTimeError::InvalidInput)- If the input string cannot be parsed
Fuzzer
To run the fuzzer:
$ cd fuzz
$ cargo install cargo-fuzz
$ cargo +nightly fuzz run fuzz_parse_datetime
License
This project is licensed under the MIT License.
Note
At some point, this crate was called humantime_to_duration. It has been renamed to cover more cases.