mirror of
https://github.com/ouch-org/ouch.git
synced 2025-06-06 11:35:45 +00:00
10 lines
166 B
Rust
10 lines
166 B
Rust
//! Archive compression algorithms
|
|
|
|
#[cfg(feature = "unrar")]
|
|
pub mod rar;
|
|
#[cfg(not(feature = "unrar"))]
|
|
pub mod rar_stub;
|
|
pub mod sevenz;
|
|
pub mod tar;
|
|
pub mod zip;
|