repo.or.cz
/
ouch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix: change threads short flag to -c in cli args to avoid conflict with `tree`
[ouch.git]
/
src
/
archive
/
mod.rs
blob
4cfacc0ef6effcda3ea5b4b8cc045705c3ccc6dc
1
//! Archive compression algorithms
2
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;