You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
My guess is that the most common case for using a zip crate is to read a zip file. Given this assumption, I feel like one of the first things the user should see on the docs on docs.rs is an example of reading a zip file and printing the file names, or something of the sort. The examples directory is good, but it's not mentioned at all on docs.rs.
Another thing that isn't immediately obvious is that the crate does no buffering whatsoever, and the user should probably use a BufReader when reading from a File. In my case, the unbuffered version took 11s to new the object, while the buffered version took only about 500ms.
The text was updated successfully, but these errors were encountered:
My guess is that the most common case for using a zip crate is to read a zip file. Given this assumption, I feel like one of the first things the user should see on the docs on docs.rs is an example of reading a zip file and printing the file names, or something of the sort. The examples directory is good, but it's not mentioned at all on docs.rs.
Another thing that isn't immediately obvious is that the crate does no buffering whatsoever, and the user should probably use a
BufReader
when reading from aFile
. In my case, the unbuffered version took 11s tonew
the object, while the buffered version took only about 500ms.The text was updated successfully, but these errors were encountered: