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 |
#17 in #date-format
3,305 downloads per month
Used in 4 crates
(2 directly)
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
- add
Dependencies
~1MB
~19K SLoC