backup-deduplicator 0.3.0

A tool to deduplicate backups. It builds a hash tree of all files and folders in the target directory. Optionally also traversing into archives like zip or tar files. The hash tree is then used to find duplicate files and folders.
Documentation
1
2
3
4
5
6
7
8
9
10
11

pub mod output {
    mod dupset_file;
    
    pub use dupset_file::*;
}

pub mod cmd;
mod worker;

pub mod intermediary_analysis_data;