duplicate-finder 0.0.2

Simple program to find duplicated files in a filesystem
Documentation
[package]
name = "duplicate-finder"
version = "0.0.2"
authors = ["Ilia Mazurenko <ivmazurenko@yandex.ru>"]
edition = "2018"
description = "Simple program to find duplicated files in a filesystem"
readme = "README.md"
license = "MIT"
repository = "https://github.com/ivmazurenko/duplicate-finder"

[dependencies]
clap = "2.33.0"
tokio = "0.1.22"
siphasher = "0.3.0"
serde = "1.0.40"
serde_json = "1.0.40"
serde_derive = "1.0.40"

libc = "0.2"

[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3"
features = ["wincon", "processenv", "winbase"]

[target.'cfg(target_os = "redox")'.dependencies]
termion = "1.4"