From c79cab556d5e2a1278a3649cd72e796985732f43 Mon Sep 17 00:00:00 2001 From: ivan770 Date: Mon, 17 May 2021 15:57:47 +0200 Subject: [PATCH] Allow clippy::type_complexity for try_chunks --- futures-util/src/stream/try_stream/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/futures-util/src/stream/try_stream/mod.rs b/futures-util/src/stream/try_stream/mod.rs index 64a492e2da..016ecba8d5 100644 --- a/futures-util/src/stream/try_stream/mod.rs +++ b/futures-util/src/stream/try_stream/mod.rs @@ -506,6 +506,7 @@ pub trait TryStreamExt: TryStream { where Self: Sized, { + #[allow(clippy::type_complexity)] assert_stream::, ChunkError>, _>( TryChunks::new(self, capacity), )