diff --git a/src/decoder/mod.rs b/src/decoder/mod.rs index 54096af..16aa3eb 100644 --- a/src/decoder/mod.rs +++ b/src/decoder/mod.rs @@ -46,7 +46,7 @@ where impl Decoder where - R: Read + Seek + Send, + R: Read + Seek, { /// Builds a new decoder. /// @@ -130,7 +130,7 @@ where impl LoopedDecoder where - R: Read + Seek + Send, + R: Read + Seek, { fn new(decoder: Decoder) -> LoopedDecoder { Self(decoder.0)