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), )