chore: use pub(crate) for header parsing

used internally by the appendable ZipWriter
This commit is contained in:
zhanghar 2021-02-25 23:50:31 -05:00
parent 10da026ff6
commit 4ce5791164

View file

@ -209,7 +209,7 @@ fn make_reader<'a>(
impl<R: Read + io::Seek> ZipArchive<R> {
/// Get the directory start offset and number of files. This is done in a
/// separate function to ease the control flow design.
pub fn get_directory_counts(
pub(crate) fn get_directory_counts(
reader: &mut R,
footer: &spec::CentralDirectoryEnd,
cde_start_pos: u64,
@ -515,7 +515,7 @@ fn unsupported_zip_error<T>(detail: &'static str) -> ZipResult<T> {
}
/// Parse a central directory entry to collect the information for the file.
pub fn central_header_to_zip_file<R: Read + io::Seek>(
pub(crate) fn central_header_to_zip_file<R: Read + io::Seek>(
reader: &mut R,
archive_offset: u64,
) -> ZipResult<ZipFileData> {