Make the reader and writer mod public

This commit is contained in:
Mathijs van de Nes 2015-02-28 14:35:21 +01:00
parent 8bc33dcc57
commit b65f729bbe
3 changed files with 7 additions and 2 deletions

View file

@ -19,9 +19,9 @@ mod spec;
mod reader_spec;
mod writer_spec;
mod crc32;
mod reader;
pub mod reader;
mod types;
pub mod compression;
mod writer;
pub mod writer;
mod cp437;
pub mod result;

View file

@ -1,3 +1,5 @@
//! Structs for reading a ZIP archive
use crc32::Crc32Reader;
use types::ZipFile;
use compression::CompressionMethod;
@ -44,6 +46,7 @@ pub struct ZipReader<T>
names_map: HashMap<String, usize>,
}
/// Iterator over the files contained in a zip archive
pub struct ZipFileIterator<'a>
{
inner: ::std::slice::Iter<'a, ZipFile>,

View file

@ -1,3 +1,5 @@
//! Structs for creating a new zip archive
use compression::CompressionMethod;
use types::ZipFile;
use spec;