mirror of
https://github.com/ouch-org/ouch.git
synced 2025-07-21 17:10:15 +00:00
12 lines
217 B
Rust
12 lines
217 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 tar;
|
|
pub mod zip;
|