PSeitz / lz4_flex

Fastest pure Rust implementation of LZ4 compression/decompression.
MIT License
441 stars 28 forks source link

Add `into_inner()` to FrameDecoder #56

Closed james-rms closed 2 years ago

james-rms commented 2 years ago

This method would be handy to use when only a chunk of a file is lz4-compressed.

codecov-commenter commented 2 years ago

Codecov Report

Merging #56 (7b77b4f) into main (eda0114) will decrease coverage by 0.11%. The diff coverage is 0.00%.

@@            Coverage Diff             @@
##             main      #56      +/-   ##
==========================================
- Coverage   87.76%   87.65%   -0.12%     
==========================================
  Files          11       11              
  Lines        2289     2292       +3     
==========================================
  Hits         2009     2009              
- Misses        280      283       +3     
Impacted Files Coverage Δ
src/frame/compress.rs 83.33% <ø> (ø)
src/frame/decompress.rs 74.81% <0.00%> (-0.85%) :arrow_down:

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

PSeitz commented 2 years ago

Thanks! published on cargo as version 0.9.5

james-rms commented 2 years ago

Thank you!