6 releases

0.1.4 Sep 5, 2023
0.1.3 Oct 15, 2021
0.1.2 Jun 10, 2021
0.1.1 Jun 25, 2020
0.0.0 May 28, 2020

#28 in #date-format

Download history 1826/week @ 2024-11-15 2777/week @ 2024-11-22 1150/week @ 2024-11-29 1686/week @ 2024-12-06 1284/week @ 2024-12-13 403/week @ 2024-12-20 244/week @ 2024-12-27 554/week @ 2025-01-03 1053/week @ 2025-01-10 671/week @ 2025-01-17 621/week @ 2025-01-24 544/week @ 2025-01-31 405/week @ 2025-02-07 493/week @ 2025-02-14 519/week @ 2025-02-21 485/week @ 2025-02-28

1,935 downloads per month
Used in 6 crates (3 directly)

MIT license

14KB
284 lines

simpledateformat

SimpleDateFormat.java style like date format

Usage:

let f = match fmt("yyyy-MM-dd HH:mm:ss z") {
    Ok(f) => f, Err(err) => {
        println!("Parse fmt error: {}", err);
        return;
    },
};
println!("Formated date: {}", f.format(&Local::now()));

Output:

Formated date: 2020-05-30 13:32:04 +08:00
format_human(Duration::from_secs(2 * 24 * 60 * 60 + 1));

Output:

2days 0hour 0min 1s

More tests:

https://git.hatter.ink/hatter/simpledateformat/src/branch/master/tests/lib_test.rs

Log

  • Jun 23, 2020 - v0.1.1
    • add simpledateformat::new_with_out_err(&str)
    • add impl TryFrom<&str> for SimpleDateFormat

Dependencies

~1MB
~19K SLoC