rc_zip/parse/mod.rs
1//! Parsers and types for the various elements that make up a ZIP file.
2//!
3//! Contain winnow parsers for most elements that make up a ZIP file, like the
4//! end-of-central-directory record, local file headers, and central directory
5//! headers.
6//!
7//! All parsers here are based off of the PKWARE appnote.txt, which you can find
8//! in the source repository.
9
10mod archive;
11pub use archive::*;
12
13mod extra_field;
14pub use extra_field::*;
15
16mod mode;
17pub use mode::*;
18
19mod version;
20pub use version::*;
21
22mod date_time;
23pub use date_time::*;
24
25mod central_directory_file_header;
26pub use central_directory_file_header::*;
27
28mod eocd;
29pub use eocd::*;
30
31mod local_headers;
32pub use local_headers::*;