Merge pull request #231 from a1phyr/remove_archive_bounds

Remove `io::Read + io::Seek` bound to `ZipArchive`
This commit is contained in:
Plecra 2021-04-19 11:50:41 +01:00 committed by GitHub
commit 92799661a7
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,7 +47,7 @@ mod ffi {
/// }
/// ```
#[derive(Clone, Debug)]
pub struct ZipArchive<R: Read + io::Seek> {
pub struct ZipArchive<R> {
reader: R,
files: Vec<ZipFileData>,
names_map: HashMap<String, usize>,