#date-format #logging

simpledateformat

SimpleDateFormat.java style like date format

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

#388 in Date and time

Download history 1850/week @ 2024-12-04 1179/week @ 2024-12-11 554/week @ 2024-12-18 342/week @ 2024-12-25 487/week @ 2025-01-01 830/week @ 2025-01-08 957/week @ 2025-01-15 344/week @ 2025-01-22 865/week @ 2025-01-29 348/week @ 2025-02-05 379/week @ 2025-02-12 706/week @ 2025-02-19 448/week @ 2025-02-26 493/week @ 2025-03-05 634/week @ 2025-03-12 443/week @ 2025-03-19

2,129 downloads per month
Used in 7 crates (4 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