[package]
edition = "2021"
name = "dirhash_fast"
version = "0.1.1"
authors = ["Arno Waschk"]
build = false
exclude = [
".gitignore",
".github/",
"patches/",
"target/",
"Cargo.lock",
"tests/",
"scripts/",
"examples/",
"docs/",
"up",
"*.rej",
"*.log",
"*.tmp",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance tool for hashing directory trees"
readme = "README.md"
keywords = [
"directory",
"hashing",
"BLAKE3",
"parallel",
"cryptography",
]
categories = [
"filesystem",
"algorithms",
"concurrency",
"cryptography",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arnowaschk/dirhash_fast"
[lib]
name = "dirhash_fast"
path = "src/lib.rs"
[[bin]]
name = "dirhash_fast"
path = "src/bin/dirhash_fast.rs"
[dependencies.blake3]
version = "1"
[dependencies.rayon]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.walkdir]
version = "2.5"