build: bump all dependencies and set MSRV to 1.94; fix build failures

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I7d331410864358d30191781d1e6c23f46a6a6964
This commit is contained in:
raf 2026-04-21 17:21:39 +03:00
commit 8b2140c057
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
12 changed files with 248 additions and 196 deletions

View file

@ -409,7 +409,7 @@ impl Fetcher {
for attempt in 0..max_attempts {
match self.download_single_attempt(url, target_path).await {
Ok(()) => return Ok(()),
Err(e) if attempt < self.retry_count => {
Err(_e) if attempt < self.retry_count => {
log::warn!(
"Download attempt {}/{} failed for {}, retrying...",
attempt + 1,