Closed luizirber closed 4 years ago
Merging #28 into master will decrease coverage by
2.70%
. The diff coverage is100.00%
.
@@ Coverage Diff @@
## master #28 +/- ##
==========================================
- Coverage 98.64% 95.94% -2.71%
==========================================
Files 2 2
Lines 148 148
==========================================
- Hits 146 142 -4
- Misses 2 6 +4
Impacted Files | Coverage Δ | |
---|---|---|
src/lib.rs | 93.97% <100.00%> (-4.82%) |
:arrow_down: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 5ae50a2...ff68046. Read the comment docs.
Fixes #27
From checking the
flate2
code the only difference betweenGzDecoder
andMultiGzDecoder
is a.multi(true)
flag forGzDecoder
that keeps decoding data after the first member is finished, so it should be safe to replace it (and it doesn't break anyniffler
dependants, since it is exposed as aBox<dyn io::Read>
anyway).