Turns out LZMA decompression is not working
commitf8ca0e3c56f77eb644a3fa4682587432f1f15913
authorVinícius Rodrigues Miguel <lemao.vrm07@hotmail.com>
Wed, 24 Mar 2021 02:17:48 +0000 (23 23:17 -0300)
committerVinícius Rodrigues Miguel <lemao.vrm07@hotmail.com>
Wed, 24 Mar 2021 02:17:48 +0000 (23 23:17 -0300)
tree35eee81d6e239c6dda0a290fcd6ce6ce643360cf
parent989f92832096ac063e09ef8fe4c12f0bba2ab4bd
Turns out LZMA decompression is not working
33 files changed:
Cargo.lock
Cargo.toml
README.md
src/compressors/mod.rs
src/compressors/unified.rs [new file with mode: 0644]
src/compressors/zip.rs
src/decompressors/mod.rs
src/decompressors/niffler.rs [deleted file]
src/decompressors/unified.rs [new file with mode: 0644]
src/error.rs
src/evaluator.rs
third-party/zip/.gitignore [new file with mode: 0644]
third-party/zip/CODE_OF_CONDUCT.md [new file with mode: 0644]
third-party/zip/Cargo.toml [new file with mode: 0644]
third-party/zip/LICENSE [new file with mode: 0644]
third-party/zip/README.md [new file with mode: 0644]
third-party/zip/benches/read_entry.rs [new file with mode: 0644]
third-party/zip/examples/extract.rs [new file with mode: 0644]
third-party/zip/examples/extract_lorem.rs [new file with mode: 0644]
third-party/zip/examples/file_info.rs [new file with mode: 0644]
third-party/zip/examples/stdin_info.rs [new file with mode: 0644]
third-party/zip/examples/write_dir.rs [new file with mode: 0644]
third-party/zip/examples/write_sample.rs [new file with mode: 0644]
third-party/zip/src/compression.rs [new file with mode: 0644]
third-party/zip/src/cp437.rs [new file with mode: 0644]
third-party/zip/src/crc32.rs [new file with mode: 0644]
third-party/zip/src/lib.rs [new file with mode: 0644]
third-party/zip/src/read.rs [new file with mode: 0644]
third-party/zip/src/result.rs [new file with mode: 0644]
third-party/zip/src/spec.rs [new file with mode: 0644]
third-party/zip/src/types.rs [new file with mode: 0644]
third-party/zip/src/write.rs [new file with mode: 0644]
third-party/zip/src/zipcrypto.rs [new file with mode: 0644]