This crate allows to format chrono dates with localized months and week days. Backwards comptible fork of Alex-PK/chrono-locale, now works with the latest version of chrono.
Put this in your Cargo.toml:
toml
[dependencies]
chrono = "0.4.56"
chrono_lc = "0.1.3"
Then put this in your lib.rs
or main.rs
:
rs
use chrono::prelude::*;
use chrono_lc::LocaleDate;
You can choose to import just parts of chrono instead of the whole prelude. Please see 'chrono`'s documentation.
To format a chrono Date
or DateTime
object, you can use the formatl
method:
```rs let dt = FixedOffset::eastopt(34200) .unwrap() .withymdandhms(2001, 7, 8, 0, 34, 59) .unwrap() .withnanosecond(1026490708) .unwrap();
println!("{}", dt.formatl("%c", "fr")); ```
All of chrono's formatting placeholders
work except for %3f
, %6f
and %9f
(but %.3f
, %.6f
and %.9f
work normally)