rc-zip-sync 4.4.2

Synchronous zip reading on top of rc-zip
Documentation
//! A library for reading zip files synchronously using std I/O traits,
//! built on top of [rc-zip](https://crates.io/crates/rc-zip).
//!
//! See also:
//!
//!   * [rc-zip-tokio](https://crates.io/crates/rc-zip-tokio) for using tokio I/O traits

#![warn(missing_docs)]

mod entry_reader;
mod read_zip;

mod streaming_entry_reader;
pub use streaming_entry_reader::StreamingEntryReader;

// re-exports
pub use entry_reader::EntryReader;
pub use rc_zip;
pub use read_zip::{
    ArchiveHandle, EntryHandle, HasCursor, ReadZip, ReadZipStreaming, ReadZipWithSize,
};