| Crates.io | fuzzydate |
| lib.rs | fuzzydate |
| version | 0.2.3 |
| created_at | 2022-02-17 06:10:10.564767+00 |
| updated_at | 2025-03-09 22:24:45.442131+00 |
| description | A flexible date parsing library |
| homepage | |
| repository | https://github.com/DevinVS/fuzzydate |
| max_upload_size | |
| id | 533898 |
| size | 84,738 |
A flexible date parser library for Rust.
Put this in your Cargo.toml:
[dependencies]
fuzzydate = "0.2"
use fuzzydate::parse;
fn main() {
let input = "five days after this friday";
let date = parse(input).unwrap();
println!("{:?}", date);
}