Update deps

This commit is contained in:
2024-04-25 16:44:47 +02:00
parent 71e37ed3c6
commit 1896c9724d
4 changed files with 615 additions and 611 deletions

View File

@@ -55,7 +55,7 @@ pub async fn response_to_tempfile(res: &mut Response) -> Option<(SpooledTempFile
}
pub fn get_stream(
mut temp_file: Box<dyn Read + Send>,
mut temp_file: Box<dyn Read + Send + Sync>,
) -> impl futures_core::Stream<Item = Result<Bytes, Error>> {
stream! {
let mut buf = [0; 2048];