Removed gxhash and ran cargo fmt

Signed-off-by: quexeky <git@quexeky.dev>
This commit is contained in:
quexeky
2024-11-01 07:51:56 +11:00
parent 86363327a3
commit bd39f1fd72
15 changed files with 129 additions and 104 deletions

View File

@ -1 +1 @@
mod progress_tests;
mod progress_tests;

View File

@ -1,6 +1,6 @@
use std::sync::Arc;
use std::sync::atomic::{AtomicBool, AtomicUsize};
use crate::downloads::progress::ProgressChecker;
use std::sync::atomic::{AtomicBool, AtomicUsize};
use std::sync::Arc;
#[test]
fn test_progress_sequentially() {
@ -20,4 +20,4 @@ fn test_progress_parallel() {
fn test_fn(int: usize, callback: Arc<AtomicBool>) {
println!("{}", int);
}
}