| Crates.io | humantime_to_duration |
| lib.rs | humantime_to_duration |
| version | 0.3.1 |
| created_at | 2023-04-23 18:32:43.963774+00 |
| updated_at | 2023-06-06 09:47:27.086742+00 |
| description | parsing human-readable relative time strings and converting them to a Duration |
| homepage | |
| repository | https://github.com/uutils/humantime_to_duration |
| max_upload_size | |
| id | 846736 |
| size | 28,774 |
A Rust crate for parsing human-readable relative time strings and converting them to a Duration.
Add this to your Cargo.toml:
[dependencies]
humantime_to_duration = "0.3.0"
Then, import the crate and use the from_str and from_str_at_date functions:
use humantime_to_duration::{from_str, from_str_at_date};
use chrono::Duration;
let duration = from_str("+3 days");
assert_eq!(duration.unwrap(), Duration::days(3));
let today = Utc::today().naive_utc();
let yesterday = today - Duration::days(1);
assert_eq!(
from_str_at_date(yesterday, "2 days").unwrap(),
Duration::days(1)
);
The from_str and from_str_at_date functions support the following formats for relative time:
num unit (e.g., "-1 hour", "+3 days")unit (e.g., "hour", "day")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 from_str and from_str_at_date functions return:
Ok(Duration) - If the input string can be parsed as a relative timeErr(ParseDurationError) - If the input string cannot be parsed as a relative timeThis function will return Err(ParseDurationError::InvalidInput) if the input string
cannot be parsed as a relative time.
To run the fuzzer:
$ cargo fuzz run fuzz_from_str
This project is licensed under the MIT License.