9 releases

0.2.3 Mar 9, 2025
0.2.2 Dec 27, 2023
0.2.1 Jan 22, 2023
0.2.0 Dec 14, 2022
0.1.5 Feb 18, 2022

#67 in Date and time

Download history 632/week @ 2024-12-09 123/week @ 2024-12-16 75/week @ 2024-12-23 143/week @ 2024-12-30 203/week @ 2025-01-06 231/week @ 2025-01-13 319/week @ 2025-01-20 215/week @ 2025-01-27 244/week @ 2025-02-03 301/week @ 2025-02-10 281/week @ 2025-02-17 235/week @ 2025-02-24 268/week @ 2025-03-03 343/week @ 2025-03-10 751/week @ 2025-03-17 178/week @ 2025-03-24

1,556 downloads per month
Used in 7 crates (3 directly)

MIT license

72KB
1.5K SLoC

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:

[dependencies]
fuzzydate = "0.2"

Example

use fuzzydate::parse;

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

Dependencies

~1.1–1.8MB
~33K SLoC