#[cfg(feature = "tarball")]
mod tar_common;
#[cfg(feature = "tarball")]
pub mod tarball;
#[cfg(feature = "tarzst")]
pub mod tarzst;
#[cfg(feature = "tarxz")]
pub mod tarxz;
#[cfg(feature = "tarbz")]
pub mod tarbz;
#[cfg(feature = "gz")]
pub mod gz;
#[cfg(feature = "targz")]
pub mod targz;
#[cfg(feature = "zip")]
pub mod zip;
#[cfg(feature = "rar")]
pub mod unrar;
#[cfg(feature = "ar")]
pub mod ar;
#[cfg(feature = "bz2")]
pub mod bz2;
#[cfg(feature = "xz")]
pub mod xz;
#[cfg(feature = "zstd")]
pub mod zstd;
mod utils;