Crates.io | parse_datetime_fork |
lib.rs | parse_datetime_fork |
version | 0.6.0-custom |
source | src |
created_at | 2024-09-17 05:34:53.192221 |
updated_at | 2024-09-17 05:34:53.192221 |
description | parsing human-readable time strings and converting them to a DateTime |
homepage | |
repository | https://github.com/drmorr0/parse_datetime |
max_upload_size | |
id | 1377170 |
size | 57,210 |
This is a fork of parse_datetime and only exists if/until https://github.com/uutils/parse_datetime/pull/80 is merged.
A Rust crate for parsing human-readable relative time strings and human-readable datetime strings and converting them to a DateTime
.
Add this to your Cargo.toml
:
[dependencies]
parse_datetime = "0.5.0"
Then, import the crate and use the parse_datetime_at_date
function:
use chrono::{Duration, Local};
use parse_datetime::parse_datetime_at_date;
let now = Local::now();
let after = parse_datetime_at_date(now, "+3 days");
assert_eq!(
(now + Duration::days(3)).naive_utc(),
after.unwrap().naive_utc()
);
For DateTime parsing, import the parse_datetime
function:
use parse_datetime::parse_datetime;
use chrono::{Local, TimeZone};
let dt = parse_datetime("2021-02-14 06:37:47");
assert_eq!(dt.unwrap(), Local.with_ymd_and_hms(2021, 2, 14, 6, 37, 47).unwrap());
The parse_datetime
and parse_datetime_at_date
functions support absolute datetime and the following relative times:
num
unit
(e.g., "-1 hour", "+3 days")unit
(e.g., "hour", "day")unit
(e.g., "next week", "last year")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.
The parse_datetime
and parse_datetime_at_date
function return:
Ok(DateTime<FixedOffset>)
- If the input string can be parsed as a datetimeErr(ParseDateTimeError::InvalidInput)
- If the input string cannot be parsedTo run the fuzzer:
$ cd fuzz
$ cargo install cargo-fuzz
$ cargo +nightly fuzz run fuzz_parse_datetime
This project is licensed under the MIT License.
At some point, this crate was called humantime_to_duration. It has been renamed to cover more cases.