0.2.1 |
|
---|---|
0.2.0 |
|
0.1.5 |
|
#58 in #duplicate
45KB
992 lines
Duplicate File Scanner
Project
- Repository: https://bitbucket.org/haibison/scan4df
- License: Nice License 1.0.0 (see LICENSE file at root directory of
master
branch) - This project follows Semantic Versioning 2.0.0
Features
This program helps scan for duplicate files on your system. It hashes files and then compares hashes.
Supported hash algorithms: keccak-224, keccak-256, keccak-384, keccak-512, sha3-224, sha3-256, sha3-384, sha3-512, shake-128, shake-256.
Building from source or installing via Cargo
This crate is intended to be used as a program. So default features just contain some documentation, constants and no dependencies.
bin
feature contains a binary which uses some dependencies. You can run the program with help
command for more details.
Building from source:
~> # Clone a specific version via tag name
~> git clone --branch=x.y.z --depth=1 -- https://bitbucket.org/haibison/scan4df scan4df-x.y.z/
~> cd scan4df-x.y.z/
~> cargo build --release --features=bin
Installing via Cargo:
~> cargo install scan4df --version=x.y.z --features=bin
Dependencies
~165KB