zip_extensions/
lib.rs

1#![allow(dead_code)]
2
3pub use crate::read::*;
4pub use crate::write::*;
5
6pub mod default_entry_handler;
7pub mod entry_handler;
8mod file_utils;
9pub mod preserve_symlinks;
10pub mod preserve_symlinks_handler;
11pub mod read;
12pub mod write;
13
14// Compile unit tests from `src/tests/*` only when running tests
15#[cfg(test)]
16mod tests;