Update lots of dependencies

This commit is contained in:
Natsu Kagami 2023-02-17 14:19:46 +01:00
parent 59551f1f6a
commit 3a9a252a1d
Signed by: nki
GPG key ID: 7306B3D3C3AD6E51
8 changed files with 370 additions and 395 deletions

View file

@ -45,7 +45,7 @@ impl ToQuery for (&'static str, String) {
impl ToQuery for (&'static str, DateTime<Utc>) {
fn to_query(&self) -> Vec<(&'static str, String)> {
vec![(self.0, format!("{}", self.1.date().format("%Y-%m-%d")))]
vec![(self.0, format!("{}", self.1.format("%Y-%m-%d")))]
}
}