build: Updated dependencies and upgraded to Rust 1.89.0

This commit is contained in:
2025-08-12 16:56:45 -06:00
parent 00ab0f27f7
commit 20ea15009d
9 changed files with 455 additions and 392 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
#[cfg(test)]
mod test {
use std::slice;
use std::sync::Arc;
use bimap::BiMap;
@@ -3980,7 +3981,7 @@ mod test {
};
assert_str_eq!(
get_movie_status(false, &[download_record.clone()], 0),
get_movie_status(false, slice::from_ref(&download_record), 0),
"Missing"
);
+3 -2
View File
@@ -1,5 +1,6 @@
#[cfg(test)]
mod test {
use std::slice;
use std::sync::Arc;
use bimap::BiMap;
@@ -5490,7 +5491,7 @@ mod test {
};
assert_str_eq!(
get_episode_status(false, &[download_record.clone()], 0),
get_episode_status(false, slice::from_ref(&download_record), 0),
"Missing"
);
@@ -5502,7 +5503,7 @@ mod test {
let download_record = DownloadRecord::default();
assert_str_eq!(
get_episode_status(false, &[download_record.clone()], 0),
get_episode_status(false, slice::from_ref(&download_record), 0),
"Missing"
);