catfish 0.1.1

catfish is a CLI tool that compares two directories by hashing all files. It reports which files are in the 'right' folder but not in 'left', regardless of how things were moved or renamed. Great for making sure your 'left' folder has all the files from the 'right' one.
[[bin]]
name = "catfish"
path = "src/main.rs"

[dependencies.anyhow]
version = "1"

[dependencies.clap]
features = ["derive"]
version = "4.5.23"

[dependencies.rayon]
version = "1.10.0"

[dependencies.sha2]
version = "0.10.8"

[dependencies.walkdir]
version = "2.5.0"

[package]
authors = ["Samuel Van der Stappen <shogun_einst.0i@icloud.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["command-line-utilities", "filesystem"]
description = """
catfish is a CLI tool that compares two directories by hashing all files. It reports which files are
in the 'right' folder but not in 'left', regardless of how things were moved or renamed. Great for
making sure your 'left' folder has all the files from the 'right' one.
"""
documentation = "https://docs.rs/catfish"
edition = "2021"
keywords = ["hash", "cli", "compare", "directories", "filesystem"]
license = "MIT"
name = "catfish"
readme = "README.md"
repository = "https://github.com/samvdst/catfish"
version = "0.1.1"