zip 0.3.1

Library to support the reading and writing of zip files.
Documentation
//! A basic ZipReader/Writer crate

#![warn(missing_docs)]

#[cfg(feature = "bzip2")]
extern crate bzip2;
#[cfg(feature = "deflate")]
extern crate flate2;
extern crate msdos_time;
extern crate podio;
extern crate time;

pub use read::ZipArchive;
pub use write::ZipWriter;
pub use compression::CompressionMethod;

mod spec;
mod crc32;
mod types;
pub mod read;
mod compression;
pub mod write;
mod cp437;
pub mod result;