fix: change threads short flag to -c in cli args to avoid conflict with `tree`
[ouch.git] / src / archive / mod.rs
blob4cfacc0ef6effcda3ea5b4b8cc045705c3ccc6dc
1 //! Archive compression algorithms
3 #[cfg(feature = "unrar")]
4 pub mod rar;
5 #[cfg(not(feature = "unrar"))]
6 pub mod rar_stub;
7 pub mod sevenz;
8 pub mod tar;
9 pub mod zip;