From b65f729bbea9f6638b213ac00e684aa7d9615d15 Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Sat, 28 Feb 2015 14:35:21 +0100 Subject: [PATCH] Make the reader and writer mod public --- src/lib.rs | 4 ++-- src/reader.rs | 3 +++ src/writer.rs | 2 ++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 41824950..d241509c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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; diff --git a/src/reader.rs b/src/reader.rs index 52bd00df..5bb0f856 100644 --- a/src/reader.rs +++ b/src/reader.rs @@ -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 names_map: HashMap, } +/// Iterator over the files contained in a zip archive pub struct ZipFileIterator<'a> { inner: ::std::slice::Iter<'a, ZipFile>, diff --git a/src/writer.rs b/src/writer.rs index 6a067208..e31775ca 100644 --- a/src/writer.rs +++ b/src/writer.rs @@ -1,3 +1,5 @@ +//! Structs for creating a new zip archive + use compression::CompressionMethod; use types::ZipFile; use spec;