Using this crate gives a difference of two hours between the true time (also given by chrono) and real local time.
fnmain(){println!("datetime: {:?}", datetime::LocalDateTime::now());println!("chrono: {}", chrono::Local::now());}datetime: LocalDateTime(2019-10-05T09:06:49.-17459)
chrono: 2019-10-05 11:06:49.310240511 +02:00
Using this crate gives a difference of two hours between the true time (also given by
chrono) and real local time.