ouch/src/archive/mod.rs
2025-07-01 01:38:42 -04:00

13 lines
235 B
Rust

//! Archive compression algorithms
#[cfg(not(feature = "bzip3"))]
pub mod bzip3_stub;
#[cfg(feature = "unrar")]
pub mod rar;
#[cfg(not(feature = "unrar"))]
pub mod rar_stub;
pub mod sevenz;
pub mod squashfs;
pub mod tar;
pub mod zip;