Update all dependencies (#415)

* Update all dependencies

* Remove openssl and use rustls for reqwest

* Add nix as dependency to ensure fs feature

* Specify specific wayland-cursor dependency

This fixes the problem with egui where it can not compile on linux

* Update version to 1.9.5

* Update cargo-lock for flatpak
This commit is contained in:
Philip Kristoffersen
2024-10-28 11:48:25 +01:00
committed by GitHub
parent 839da8c18f
commit 10caa7bee1
6 changed files with 5613 additions and 1772 deletions
+1
View File
@@ -99,6 +99,7 @@ pub async fn download_images_for_users<'b>(
.map(|to_download| async move {
if let Err(e) = download_to_download(to_download).await {
println!("Error downloading {:?}: {}", &to_download.path, e);
dbg!(&e);
}
})
.buffer_unordered(CONCURRENT_REQUESTS)