FuzzyDate: Date Input for Humans

FuzzyDate Github Actions FuzzyDate on crates.io FuzzyDate on docs.rs

A flexible date parser library for Rust.

Usage

Put this in your Cargo.toml:

toml [dependencies] fuzzydate = "0.1"

Example

```rust use fuzzydate::parse;

fn main() { let input = "five days after this friday"; let date = parse(input).unwrap(); println!("{:?}", date); } ```