guzba
guzba
This 100% makes sense. The current zip archive and tarball implementation is pretty basic, I mostly wanted to learn how they work and figured a basic thing is better than...
Yep that's fine, can use this for updates unless you'd prefer to close it.
Hello, sorry I did not reply here before. It appears from glancing at the docs that you should be able to just call `uncompress` from zippy on each zlib chunk...
Ah ok, I understand what's up here. Hm, the issue here is it requires me to implement a zippy stream api, and also implement it exactly the same way as...
Zippy works in memory only at this point and the tarball implementation stores the entire contents of the tarball in memory after being opened (since it just got fully unzipped...
Update here (released in zippy >= 0.9.3) I have reworked a lot of Zippy's internals lately and rewritten how tarball `extractAll` is done. This has enabled some significant improvement here:...
Hello. I do like the idea of supporting a stream interface for deflate / gzip / zlib and extending that to zip archives and tarballs instead of doing everything in...
I have just tagged a zippy release with an improved way for reading from zip files in it. See https://github.com/guzba/zippy/blob/master/examples/ziparchive_explore.nim for a quick intro. This requires zippy 0.9.0+. The new...
Hello, yeah I would like to support as many tar formats as possible. Unfortunately each one is pretty complex. I'm probably not going to be able to add .tar.xz in...
Hey, so I did think about this a while ago and realized I never put my thoughts down here as a reply. Currently, when extracting, a temporary directory is created...