1 2 3 4 5 6 7 8 9 10
//! Archive format adapters. //! //! Adapters normalize different archive formats into a common interface //! for the extraction engine. mod tar_adapter; mod zip_adapter; pub use tar_adapter::{copy_limited, TarAdapter}; pub use zip_adapter::ZipAdapter;