diff --git a/src/tools/parallel_handler.rs b/src/tools/parallel_handler.rs index 9dbbcdff..855cd690 100644 --- a/src/tools/parallel_handler.rs +++ b/src/tools/parallel_handler.rs @@ -57,7 +57,7 @@ impl ParallelHandler { threads: usize, handler_fn: F, ) -> Self - where F: Fn(I) -> Result<(), Error> + Send + Sync + Clone + 'static, + where F: Fn(I) -> Result<(), Error> + Send + Clone + 'static, { let mut handles = Vec::new(); let (input_tx, input_rx) = bounded::(threads);