duplicate-finder 0.0.1

Simple program to find duplicated files in a filesystem
Documentation

# Duplicate Finder
This application searches for duplicate files in input directory and its subdirectories. It is alternative for DDH (https://github.com/darakian/ddh/)

## Install
Use [rustup](https://rustup.rs/) and cargo as usual.

## Differences from DDH
1. Pretty progress bar (based on https://github.com/mitsuhiko/indicatif, but a little rewrited).
2. Currently it is not available to returns JSON as result.


## Usage
```
USAGE:
    duplicate-finder [OPTIONS]

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
    -p, --path <path>    Sets path to process

```
## How Does it Work?
Duplicate finder uses siphasher algorithm to determine files uniqueness and, as such, depends heavily on disk speeds for performance.

### Crates.io link
[duplicate-finder](https://crates.io/crates/?)