detect-duplicates 0.2.1

Detects and reports duplicate files in a file system
Documentation
//! This crate can be used to detect and report duplicate files in a file 
//! system.
//! 
//! The functions in [`duplicates`] can be used to get a list of lists of 
//! duplicate file paths. [`duplicates::get_duplicates_hashed`] should 
//! generally be preferred, since it uses memory proportional to the size of 
//! the largest file, independent of how many files are being checked.
//! 
//! The function [`paths::get_descendants`] is convenient for getting the list of 
//! all files which are descendants of a base path.
//! 
//! ## Basic usage:
//! ```no_run
//! // Assume the following directory structure, where the contents of 
//! // a.txt and e.txt are identical, and the contents of b.txt, c.txt, and
//! // d.txt are identical.
//! // 
//! // files
//! // ├── a.txt
//! // ├── b.txt
//! // └── more_files
//! //     ├── c.txt
//! //     ├── d.txt
//! //     └── even_more_files
//! //         ├── e.txt
//! //         └── f.txt
//! 
//! let base_path = Path::from("files");
//! let descendants = get_descendants(base_path);
//! let duplicates = get_duplicates_hashed(&descendants);
//! let expected = vec![
//!     vec!["files/a.txt", "files/more_files/even_more_files/e.txt"],
//!     vec!["files/b.txt", "files/more_files/c.txt", "files/more_files.d.txt"]
//! ];
//! assert!(duplicates == expected);
//! ```

pub mod duplicates;
pub mod paths;