| Crates.io | parse_datetime |
| lib.rs | parse_datetime |
| version | 0.12.0 |
| created_at | 2023-06-09 11:44:13.398312+00 |
| updated_at | 2025-09-22 13:16:11.751021+00 |
| description | parsing human-readable time strings and converting them to a DateTime |
| homepage | |
| repository | https://github.com/uutils/parse_datetime |
| max_upload_size | |
| id | 886180 |
| size | 163,652 |
A Rust crate for parsing human-readable relative time strings and human-readable datetime strings and converting them to a jiff's Zoned object.
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 jiff::{ToSpan, Zoned};
use parse_datetime::parse_datetime_at_date;
let now = Zoned::now();
let after = parse_datetime_at_date(now.clone(), "+3 days");
assert_eq!(
now.checked_add(3.days()).unwrap(),
after.unwrap()
);
For DateTime parsing, import the parse_datetime function:
use jiff::{civil::{date, time} ,Zoned};
use parse_datetime::parse_datetime;
let dt = parse_datetime("2021-02-14 06:37:47");
assert_eq!(dt.unwrap(), Zoned::now().with().date(date(2021, 2, 14)).time(time(6, 37, 47, 0)).build().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(Zoned) - If the input string can be parsed as a Zoned objectErr(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.