FuzzyDate: Date Input for Humans
A flexible date parser library for Rust.
Usage
Put this in your Cargo.toml:
[]
= "0.1"
Example
use parse;
A flexible date parser library for Rust.
Put this in your Cargo.toml:
[dependencies]
fuzzydate = "0.1"
use fuzzydate::parse;
fn main() {
let input = "five days after this friday";
let date = parse(input).unwrap();
println!("{:?}", date);
}